1 database.inc db_insert($table, array $options = array())

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

File

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

Code

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