W3cubDocs

/Drupal 8

public function Select::__construct

public Select::__construct($table, $alias = NULL, Connection $connection, $options = array())

Constructs a Select object.

Parameters

string $table: The name of the table that is being queried.

string $alias: The alias for the table.

\Drupal\Core\Database\Connection $connection: Database connection object.

array $options: Array of query options.

Overrides Query::__construct

File

core/lib/Drupal/Core/Database/Query/Select.php, line 132

Class

Select
Query builder for SELECT statements.

Namespace

Drupal\Core\Database\Query

Code

public function __construct($table, $alias = NULL, Connection $connection, $options = array()) {
  $options['return'] = Database::RETURN_STATEMENT;
  parent::__construct($connection, $options);
  $conjunction = isset($options['conjunction']) ? $options['conjunction'] : 'AND';
  $this->condition = new Condition($conjunction);
  $this->having = new Condition($conjunction);
  $this->addJoin(NULL, $table, $alias);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Query!Select.php/function/Select::__construct/8.1.x