function db_insert in Drupal 7
Same name and namespace in other branches
- 8 core/includes/database.inc \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
10 calls to db_insert()
- DatabaseInsertTestCase::testMultiInsert in modules/
simpletest/ tests/ database_test.test - Test that we can insert multiple records in one query object.
- DatabaseInsertTestCase::testRepeatedInsert in modules/
simpletest/ tests/ database_test.test - Test that an insert object can be reused with new data after it executes.
- DatabaseInsertTestCase::testSimpleInsert in modules/
simpletest/ tests/ database_test.test - Test the very basic insert functionality.
- system_update_7003 in modules/
system/ system.install - Update {blocked_ips} with valid IP addresses from {access}.
- system_update_7007 in modules/
system/ system.install - Convert to new method of storing permissions.
File
- includes/
database/ database.inc, line 2533 - 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);
}