function Connection::upsert

Prepares and returns an UPSERT query object.

Parameters

string $table: The table to use for the upsert query.

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

Return value

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

See also

\Drupal\Core\Database\Query\Upsert

File

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

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

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

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