function db_truncate

Returns a new TruncateQuery object for the active database.

Parameters

$table: The table from which to delete.

$options: An array of options to control how the query operates.

Return value

TruncateQuery A new TruncateQuery object for this connection.

Related topics

1 call to db_truncate()
StatisticsLoggingTest::setUp in drupal/core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsLoggingTest.php
Sets up a Drupal site for running functional and integration tests.

File

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

Code

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);
}