| Versions | |
|---|---|
| 7 | db_truncate($table, array $options = array()) |
Returns a new TruncateQuery object for the active database.
$table The table from which to delete.
$options An array of options to control how the query operates.
TruncateQuery A new TruncateQuery object for this connection.
drupal/
<?php
function db_truncate($table, array $options = array()) {
if (empty($options['target']) || $options['target'] == 'slave') {
$options['target'] = 'default';
}
return Database::getConnection($options['target'])->truncate($table, $options);
}
?>