function db_insert

Returns a new InsertQuery object for the active database.

Parameters

$table: The table into which to insert.

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

Return value

InsertQuery A new InsertQuery object for this connection.

Related topics

3 calls to db_insert()
InsertTest::testMultiInsert in drupal/core/modules/system/lib/Drupal/system/Tests/Database/InsertTest.php
Tests that we can insert multiple records in one query object.
InsertTest::testRepeatedInsert in drupal/core/modules/system/lib/Drupal/system/Tests/Database/InsertTest.php
Tests that an insert object can be reused with new data after it executes.
InsertTest::testSimpleInsert in drupal/core/modules/system/lib/Drupal/system/Tests/Database/InsertTest.php
Tests very basic insert functionality.

File

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

Code

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