function db_delete in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/includes/database.inc \db_delete()
Returns a new DeleteQuery object for the active database.
Parameters
string $table: The table from which to delete.
array $options: An array of options to control how the query operates.
Return value
\Drupal\Core\Database\Query\Delete A new Delete object for this connection.
Deprecated
as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Instead, get a database connection injected into your service from the container and call delete() on it. E.g. $injected_database->delete($table, $options);
See also
\Drupal\Core\Database\Connection::delete()
\Drupal\Core\Database\Connection::defaultOptions()
Related topics
2 calls to db_delete()
- locale_translation_file_history_delete in core/
modules/ locale/ locale.module - Deletes the history of downloaded translations.
- search_index_clear in core/
modules/ search/ search.module - Clears either a part of, or the entire search index.
File
- core/
includes/ database.inc, line 231 - Core systems for the database layer.
Code
function db_delete($table, array $options = array()) {
if (empty($options['target']) || $options['target'] == 'replica') {
$options['target'] = 'default';
}
return Database::getConnection($options['target'])
->delete($table, $options);
}