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); }
Please login to continue.