W3cubDocs

/Drupal 8

public function Connection::merge

public Connection::merge($table, array $options = array())

Prepares and returns a MERGE query object.

Parameters

string $table: The table to use for the merge statement.

array $options: (optional) An array of options on the query.

Return value

\Drupal\Core\Database\Query\Merge A new Merge query object.

See also

\Drupal\Core\Database\Query\Merge

File

core/lib/Drupal/Core/Database/Connection.php, line 821

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function merge($table, array $options = array()) {
  $class = $this->getDriverClass('Merge');
  return new $class($this, $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!lib!Drupal!Core!Database!Connection.php/function/Connection::merge/8.1.x