function Connection::merge

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 1292

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function merge($table, array $options = []) {
  $class = $this->getDriverClass('Merge');
  return new $class($this, $table, $options);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.