function 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()
2 methods override Connection::delete()
- Connection::delete in core/
modules/ pgsql/ src/ Driver/ Database/ pgsql/ Connection.php - Prepares and returns a DELETE query object.
- Connection::delete in core/
tests/ fixtures/ database_drivers/ custom/ fake/ Connection.php - Prepares and returns a DELETE query object.
File
-
core/
lib/ Drupal/ Core/ Database/ Connection.php, line 925
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\DatabaseCode
public function delete($table, array $options = []) {
return new Delete($this, $table, $options);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.