You are here

public function Connection::delete in Drupal 8

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

Prepares and returns a DELETE query object.

Parameters

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

array $options: (optional) An associative array of options to control how the query is run. The given options will be merged with \Drupal\Core\Database\Connection::defaultOptions().

Return value

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

See also

\Drupal\Core\Database\Query\Delete

\Drupal\Core\Database\Connection::defaultOptions()

File

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

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

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