function StubConnection::select
Prepares and returns a SELECT query object.
@todo in drupal:11.0.0, return a new Query\Select instance directly.
Parameters
string|\Drupal\Core\Database\Query\SelectInterface $table: The base table name or subquery for this query, used in the FROM clause. If a string, the table specified will also be used as the "base" table for query_alter hook implementations.
string $alias: (optional) The alias of the base table of this query.
$options: An array of options on the query.
Return value
\Drupal\Core\Database\Query\SelectInterface An appropriate SelectQuery object for this database connection. Note that it may be a driver-specific subclass of SelectQuery, depending on the driver.
Overrides Connection::select
File
-
core/
tests/ Drupal/ Tests/ Core/ Database/ Stub/ StubConnection.php, line 123
Class
- StubConnection
- A stub of the abstract Connection class for testing purposes.
Namespace
Drupal\Tests\Core\Database\StubCode
public function select($table, $alias = NULL, array $options = []) {
return new Select($this, $table, $alias, $options);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.