function db_update

7.x database.inc db_update($table, array $options = array())

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

179 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.

... See full list

File

drupal-7.x/includes/database/database.inc, line 2460
Core systems for the database layer.

Code

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);
}