function Select::__construct
Same name in this branch
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Select.php \Drupal\sqlite\Driver\Database\sqlite\Select::__construct()
- 10 core/modules/mysql/src/Driver/Database/mysql/Select.php \Drupal\mysql\Driver\Database\mysql\Select::__construct()
- 10 core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\Select::__construct()
Same name and namespace in other branches
- 9 core/modules/sqlite/src/Driver/Database/sqlite/Select.php \Drupal\sqlite\Driver\Database\sqlite\Select::__construct()
- 9 core/modules/mysql/src/Driver/Database/mysql/Select.php \Drupal\mysql\Driver\Database\mysql\Select::__construct()
- 9 core/modules/pgsql/src/Driver/Database/pgsql/Select.php \Drupal\pgsql\Driver\Database\pgsql\Select::__construct()
- 9 core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\Select::__construct()
- 8.9.x core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\Select::__construct()
- 11.x core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\Select::__construct()
Constructs a Select object.
Parameters
\Drupal\Core\Database\Connection $connection: Database connection object.
string|\Drupal\Core\Database\Query\SelectInterface $table: The table name or subquery that is being queried.
string $alias: The alias for the table.
array $options: Array of query options.
Overrides Select::__construct
File
-
core/
modules/ pgsql/ src/ Driver/ Database/ pgsql/ Select.php, line 20
Class
- Select
- PostgreSQL implementation of \Drupal\Core\Database\Query\Select.
Namespace
Drupal\pgsql\Driver\Database\pgsqlCode
public function __construct(Connection $connection, $table, $alias = NULL, array $options = []) {
// @todo Remove the __construct in Drupal 11.
// @see https://www.drupal.org/project/drupal/issues/3256524
parent::__construct($connection, $table, $alias, $options);
unset($this->queryOptions['return']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.