You are here

public function Connection::truncate in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::truncate()

Prepares and returns a TRUNCATE query object.

Parameters

string $table: The table to use for the truncate statement.

array $options: (optional) An array of options on the query.

Return value

\Drupal\Core\Database\Query\Truncate A new Truncate query object.

See also

\Drupal\Core\Database\Query\Truncate

File

core/lib/Drupal/Core/Database/Connection.php, line 938

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function truncate($table, array $options = []) {
  $class = $this
    ->getDriverClass('Truncate');
  return new $class($this, $table, $options);
}