function db_merge

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

Returns a new MergeQuery object for the active database.

Parameters

$table: The table into which to merge.

$options: An array of options to control how the query operates.

Return value

MergeQuery A new MergeQuery object for this connection.

Related topics

44 calls to db_merge()
actions_save in drupal-7.x/includes/actions.inc
Saves an action and its user-supplied parameter values to the database.
aggregator_refresh in drupal-7.x/modules/aggregator/aggregator.module
Checks a news feed for new items.
aggregator_save_category in drupal-7.x/modules/aggregator/aggregator.module
Adds/edits/deletes aggregator categories.
aggregator_save_item in drupal-7.x/modules/aggregator/aggregator.processor.inc
Adds/edits/deletes an aggregator item.
BlockInvalidRegionTestCase::testBlockInInvalidRegion in drupal-7.x/modules/block/block.test
Tests that blocks assigned to invalid regions work correctly.

... See full list

File

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

Code

function db_merge($table, array $options = array()) {
  if (empty($options['target']) || $options['target'] == 'slave') {
    $options['target'] = 'default';
  }
  return Database::getConnection($options['target'])->merge($table, $options);
}