function Connection::upsert

Prepares and returns an UPSERT query object.

@todo in drupal:11.0.0, make this method abstract since Query\Upsert is an abstract class.

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.

Overrides Connection::upsert

File

core/modules/mysql/src/Driver/Database/mysql/Connection.php, line 420

Class

Connection
MySQL implementation of \Drupal\Core\Database\Connection.

Namespace

Drupal\mysql\Driver\Database\mysql

Code

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

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