db_merge($table, array $options = array())
Returns a new MergeQuery object for the active database.
string $table: Name of the table to associate with this query.
array $options: An array of options to control how the query operates.
\Drupal\Core\Database\Query\Merge A new Merge object for this connection.
as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Instead, get a database connection injected into your service from the container and call merge() on it. For example, $injected_database->merge($table, $options);
\Drupal\Core\Database\Connection::merge()
\Drupal\Core\Database\Connection::defaultOptions()
function db_merge($table, array $options = array()) { if (empty($options['target']) || $options['target'] == 'replica') { $options['target'] = 'default'; } return Database::getConnection($options['target'])->merge($table, $options); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!database.inc/function/db_merge/8.1.x