function Connection::insert

Prepares and returns an INSERT query object.

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.

See also

\Drupal\Core\Database\Query\Insert

\Drupal\Core\Database\Connection::defaultOptions()

File

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

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

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

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