function Connection::insert

Prepares and returns an INSERT query object.

@todo in drupal:11.0.0, return a new Query\Insert instance directly.

Parameters

string $table: The table to use for the insert statement.

array $options: (optional) An associative array of options to control how the query is run. The given options will be merged with \Drupal\Core\Database\Connection::defaultOptions().

Return value

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

Overrides Connection::insert

File

core/modules/sqlite/src/Driver/Database/sqlite/Connection.php, line 536

Class

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

Namespace

Drupal\sqlite\Driver\Database\sqlite

Code

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

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