db_truncate

Versions
7
db_truncate($table, array $options = array())

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

A new TruncateQuery object for this connection.

Related topics

▾ 1 function calls db_truncate()

_update_cache_clear in modules/update/update.module
Invalidates cached data relating to update status.

Code

includes/database/database.inc, line 2008

<?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);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.