function Connection::select

Prepares and returns a SELECT query object.

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

Parameters

string|\Drupal\Core\Database\Query\SelectInterface $table: The base table name or subquery for this query, used in the FROM clause. If a string, the table specified will also be used as the "base" table for query_alter hook implementations.

string $alias: (optional) The alias of the base table of this query.

$options: An array of options on the query.

Return value

\Drupal\Core\Database\Query\SelectInterface An appropriate SelectQuery object for this database connection. Note that it may be a driver-specific subclass of SelectQuery, depending on the driver.

Overrides Connection::select

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

File

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

Class

Connection
A fake Connection class for testing purposes.

Namespace

Drupal\Driver\Database\fake

Code

public function select($table, $alias = NULL, array $options = []) {
  return new Select($this, $table, $alias, $options);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.