function Connection::delete

Prepares and returns a DELETE query object.

@todo in drupal:11.0.0, return a new Query\Delete instance directly.

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.

Overrides Connection::delete

1 method overrides Connection::delete()
Connection::delete in core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Connection.php
Prepares and returns a DELETE query object.

File

core/tests/fixtures/database_drivers/custom/fake/Connection.php, line 132

Class

Connection
A fake Connection class for testing purposes.

Namespace

Drupal\Driver\Database\fake

Code

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.