public function Select::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\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 - Contains \Drupal\Core\Database\Query\Select.
Class
- Select
- Query builder for SELECT statements.
Namespace
Drupal\Core\Database\QueryCode
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);
}