Select.php |
file |
core/modules/pgsql/src/Driver/Database/pgsql/Select.php |
|
Select.php |
file |
core/tests/Drupal/Tests/Core/Database/Stub/Select.php |
|
Select.php |
file |
core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Select.php |
|
Select.php |
file |
core/lib/Drupal/Core/Render/Element/Select.php |
|
Select.php |
file |
core/lib/Drupal/Core/Database/Driver/sqlite/Select.php |
|
Select.php |
file |
core/lib/Drupal/Core/Database/Driver/pgsql/Select.php |
|
Select.php |
file |
core/lib/Drupal/Core/Database/Query/Select.php |
|
Select::$alterMetaData |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The query metadata for alter purposes. |
Select::$alterTags |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The query tags. |
Select::$distinct |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
Whether or not this query should be DISTINCT. |
Select::$expressions |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The expressions to SELECT as virtual fields. |
Select::$fields |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The fields to SELECT. |
Select::$forUpdate |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The FOR UPDATE status. |
Select::$group |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The fields by which to group. |
Select::$having |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The conditional object for the HAVING clause. |
Select::$order |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The fields by which to order this query. |
Select::$prepared |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
Indicates if preExecute() has already been called. |
Select::$range |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The range limiters for this query. |
Select::$tables |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The tables against which to JOIN. |
Select::$union |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
An array whose elements specify a query to UNION, and the UNION type. |
Select::addExpression |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Adds an expression to the list of "fields" to be SELECTed. |
Select::addExpression |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Select.php |
Adds an expression to the list of "fields" to be SELECTed. |
Select::addField |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Adds a field to the list to be SELECTed. |
Select::addJoin |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Join against another table in the database. |
Select::addMetaData |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Adds additional metadata to the query. |
Select::addTag |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Adds a tag to a query. |
Select::arguments |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Gets a complete list of all values to insert into the prepared statement. |
Select::compile |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Compiles the saved conditions for later retrieval. |
Select::compiled |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Check whether a condition has been previously compiled. |
Select::countQuery |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Get the equivalent COUNT query of this query as a new query object. |
Select::distinct |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Sets this query to be DISTINCT. |
Select::escapeField |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Escapes a field name string. |
Select::escapeLike |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Escapes characters that work as wildcard characters in a LIKE pattern. |
Select::execute |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Runs the query against the database. |
Select::execute |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Select.php |
Runs the query against the database. |
Select::extend |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Enhance this object by wrapping it in an extender object. |
Select::fields |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Add multiple fields from the same table to be SELECTed. |
Select::forUpdate |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Add FOR UPDATE to the query. |
Select::forUpdate |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Select.php |
|
Select::getArguments |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Compiles and returns an associative array of the arguments for this prepared statement. |
Select::getExpressions |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the expressions array for this query. |
Select::getFields |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the fields array for this query. |
Select::getGroupBy |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the group-by array for this query. |
Select::getInfo |
function |
core/lib/Drupal/Core/Render/Element/Select.php |
Returns the element properties for this element. |
Select::getMetaData |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Retrieves a given piece of metadata. |
Select::getOrderBy |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the order by array for this query. |
Select::getTables |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the tables array for this query. |
Select::getUnion |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the union queries for this query. |
Select::groupBy |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Groups the result set by the specified field. |
Select::hasAllTags |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Determines if a given query has all specified tags. |