function Select::__construct
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 133
Class
- Select
- Query builder for SELECT statements.
Namespace
Drupal\Core\Database\QueryCode
public function __construct($table, $alias, Connection $connection, $options = []) {
$options['return'] = Database::RETURN_STATEMENT;
parent::__construct($connection, $options);
$conjunction = isset($options['conjunction']) ? $options['conjunction'] : 'AND';
$this->condition = $this->connection
->condition($conjunction);
$this->having = $this->connection
->condition($conjunction);
$this->addJoin(NULL, $table, $alias);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.