db_insert($table, array $options = array())Returns a new InsertQuery object for the active database.
$table The table into which to insert.
$options An array of options to control how the query operates.
InsertQuery A new InsertQuery object for this connection.
includes/database/database.inc, line 2225
<?php
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);
}
?> | This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License | ![]() |
