You are here

public function Upsert::__construct in Drupal 10

Same name in this branch
  1. 10 core/lib/Drupal/Core/Database/Query/Upsert.php \Drupal\Core\Database\Query\Upsert::__construct()
  2. 10 core/modules/sqlite/src/Driver/Database/sqlite/Upsert.php \Drupal\sqlite\Driver\Database\sqlite\Upsert::__construct()
  3. 10 core/modules/pgsql/src/Driver/Database/pgsql/Upsert.php \Drupal\pgsql\Driver\Database\pgsql\Upsert::__construct()
  4. 10 core/modules/mysql/src/Driver/Database/mysql/Upsert.php \Drupal\mysql\Driver\Database\mysql\Upsert::__construct()
Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Database/Query/Upsert.php \Drupal\Core\Database\Query\Upsert::__construct()
  2. 9 core/lib/Drupal/Core/Database/Query/Upsert.php \Drupal\Core\Database\Query\Upsert::__construct()

Constructs an Upsert object.

Parameters

\Drupal\Core\Database\Connection $connection: A Connection object.

string $table: Name of the table to associate with this query.

array $options: (optional) An array of database options.

Overrides Query::__construct

2 calls to Upsert::__construct()
Upsert::__construct in core/modules/sqlite/src/Driver/Database/sqlite/Upsert.php
Constructs an Upsert object.
Upsert::__construct in core/modules/pgsql/src/Driver/Database/pgsql/Upsert.php
Constructs an Upsert object.
3 methods override Upsert::__construct()
Upsert::__construct in core/modules/sqlite/src/Driver/Database/sqlite/Upsert.php
Constructs an Upsert object.
Upsert::__construct in core/modules/pgsql/src/Driver/Database/pgsql/Upsert.php
Constructs an Upsert object.
Upsert::__construct in core/modules/mysql/src/Driver/Database/mysql/Upsert.php
Constructs an Upsert object.

File

core/lib/Drupal/Core/Database/Query/Upsert.php, line 37

Class

Upsert
General class for an abstracted "Upsert" (UPDATE or INSERT) query operation.

Namespace

Drupal\Core\Database\Query

Code

public function __construct(Connection $connection, $table, array $options = []) {

  // @todo Remove $options['return'] in Drupal 11.
  // @see https://www.drupal.org/project/drupal/issues/3256524
  $options['return'] = Database::RETURN_AFFECTED;
  parent::__construct($connection, $options);
  $this->table = $table;
}