Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Connection.php

function Connection::select

Same name in this branch
  1. 11.1.x core/modules/pgsql/src/Driver/Database/pgsql/Connection.php \Drupal\pgsql\Driver\Database\pgsql\Connection::select()
  2. 11.1.x core/modules/sqlite/src/Driver/Database/sqlite/Connection.php \Drupal\sqlite\Driver\Database\sqlite\Connection::select()

Prepares and returns a SELECT query object.

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.

See also

\Drupal\Core\Database\Query\Select

2 methods override Connection::select()
Connection::select in core/modules/pgsql/src/Driver/Database/pgsql/Connection.php
Prepares and returns a SELECT query object.
Connection::select in core/modules/sqlite/src/Driver/Database/sqlite/Connection.php
Prepares and returns a SELECT query object.

File

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

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function select($table, $alias = NULL, array $options = []) {
    assert(is_string($alias) || $alias === NULL, 'The \'$alias\' argument to ' . __METHOD__ . '() must be a string or NULL');
    return new Select($this, $table, $alias, $options);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal