function db_update
Returns a new UpdateQuery object for the active database.
Parameters
$table: The table to update.
$options: An array of options to control how the query operates.
Return value
UpdateQuery A new UpdateQuery object for this connection.
Related topics
185 calls to db_update()
- actions_loop_test_install in drupal-7.x/
modules/ simpletest/ tests/ actions_loop_test.install - Implements hook_install().
- AggregatorCronTestCase::testCron in drupal-7.x/
modules/ aggregator/ aggregator.test - Adds feeds and updates them via cron process.
- aggregator_block_save in drupal-7.x/
modules/ aggregator/ aggregator.module - Implements hook_block_save().
- aggregator_cron in drupal-7.x/
modules/ aggregator/ aggregator.module - Implements hook_cron().
- aggregator_refresh in drupal-7.x/
modules/ aggregator/ aggregator.module - Checks a news feed for new items.
Archivo
- drupal-7.x/
includes/ database/ database.inc, line 2459 - Core systems for the database layer.
Código
function db_update($table, array $options = array()) {
if (empty($options['target']) || $options['target'] == 'slave') {
$options['target'] = 'default';
}
return Database::getConnection($options['target'])->update($table, $options);
}