1 database.inc | db_truncate($table, array $options = array()) |
Returns a new TruncateQuery object for the active database.
Parameters
string $table: The table from which to delete.
array $options: An array of options to control how the query operates.
Return value
TruncateQuery: A new TruncateQuery object for this connection.
Related topics
File
- core/
includes/ database/ database.inc, line 2774 - Core systems for the database layer.
Code
function db_truncate($table, array $options = array()) {
if (_db_is_replica($options)) {
$options['target'] = 'default';
}
return Database::getConnection($options['target'])->truncate($table, $options);
}