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/sqlite/src/Driver/Database/sqlite/Connection.php, line 550

Class

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

Namespace

Drupal\sqlite\Driver\Database\sqlite

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.