You are here

function db_insert in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/includes/database.inc \db_insert()

Returns a new InsertQuery object for the active database.

Parameters

string $table: The table into which to insert.

array $options: An array of options to control how the query operates.

Return value

\Drupal\Core\Database\Query\Insert A new Insert object for this connection.

Deprecated

as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Instead, get a database connection injected into your service from the container and call insert() on it. E.g. $injected_database->insert($table, $options);

See also

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

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

Related topics

4 calls to db_insert()
InsertTest::testMultiInsert in core/modules/system/src/Tests/Database/InsertTest.php
Tests that we can insert multiple records in one query object.
InsertTest::testRepeatedInsert in core/modules/system/src/Tests/Database/InsertTest.php
Tests that an insert object can be reused with new data after it executes.
InsertTest::testSimpleInsert in core/modules/system/src/Tests/Database/InsertTest.php
Tests very basic insert functionality.
tracker_cron in core/modules/tracker/tracker.module
Implements hook_cron().

File

core/includes/database.inc, line 156
Core systems for the database layer.

Code

function db_insert($table, array $options = array()) {
  if (empty($options['target']) || $options['target'] == 'replica') {
    $options['target'] = 'default';
  }
  return Database::getConnection($options['target'])
    ->insert($table, $options);
}