SelectQueryExtender::condition |
core/includes/database/select.inc |
Helper function: builds the most common conditional clauses. |
SelectQueryExtender::conditions |
core/includes/database/select.inc |
Gets a complete list of all conditions in this conditional clause. |
SelectQueryExtender::countQuery |
core/includes/database/select.inc |
Get the equivalent COUNT query of this query as a new query object. |
SelectQueryExtender::distinct |
core/includes/database/select.inc |
Sets this query to be DISTINCT. |
SelectQueryExtender::execute |
core/includes/database/select.inc |
Executes the extended select query. |
SelectQueryExtender::exists |
core/includes/database/select.inc |
Sets a condition that the specified subquery returns values. |
SelectQueryExtender::extend |
core/includes/database/select.inc |
Enhance this object by wrapping it in an extender object. |
SelectQueryExtender::fields |
core/includes/database/select.inc |
Add multiple fields from the same table to be selected. |
SelectQueryExtender::forUpdate |
core/includes/database/select.inc |
Add FOR UPDATE to the query. |
SelectQueryExtender::getArguments |
core/includes/database/select.inc |
Compiles and returns an array of the arguments for this prepared statement. |
SelectQueryExtender::getExpressions |
core/includes/database/select.inc |
Returns a reference to the expressions array for this query. |
SelectQueryExtender::getFields |
core/includes/database/select.inc |
Returns a reference to the fields array for this query. |
SelectQueryExtender::getGroupBy |
core/includes/database/select.inc |
Returns a reference to the group-by array for this query. |
SelectQueryExtender::getMetaData |
core/includes/database/select.inc |
Retrieves a given piece of metadata. |
SelectQueryExtender::getOrderBy |
core/includes/database/select.inc |
Returns a reference to the order by array for this query. |
SelectQueryExtender::getTables |
core/includes/database/select.inc |
Returns a reference to the tables array for this query. |
SelectQueryExtender::getUnion |
core/includes/database/select.inc |
Returns a reference to the union queries for this query. This include
queries for UNION, UNION ALL, and UNION DISTINCT. |
SelectQueryExtender::groupBy |
core/includes/database/select.inc |
Groups the result set by the specified field. |
SelectQueryExtender::hasAllTags |
core/includes/database/select.inc |
Determines if a given query has all specified tags. |
SelectQueryExtender::hasAnyTag |
core/includes/database/select.inc |
Determines if a given query has any specified tag. |
SelectQueryExtender::hasTag |
core/includes/database/select.inc |
Determines if a given query has a given tag. |
SelectQueryExtender::having |
core/includes/database/select.inc |
|
SelectQueryExtender::havingArguments |
core/includes/database/select.inc |
|
SelectQueryExtender::havingCompile |
core/includes/database/select.inc |
|
SelectQueryExtender::havingCondition |
core/includes/database/select.inc |
Helper function to build most common HAVING conditional clauses. |
SelectQueryExtender::havingConditions |
core/includes/database/select.inc |
|
SelectQueryExtender::innerJoin |
core/includes/database/select.inc |
Inner Join against another table in the database. |
SelectQueryExtender::isNotNull |
core/includes/database/select.inc |
Sets a condition that the specified field be NOT NULL. |
SelectQueryExtender::isNull |
core/includes/database/select.inc |
Sets a condition that the specified field be NULL. |
SelectQueryExtender::isPrepared |
core/includes/database/select.inc |
Indicates if preExecute() has already been called on that object. |
SelectQueryExtender::join |
core/includes/database/select.inc |
Default Join against another table in the database. |
SelectQueryExtender::leftJoin |
core/includes/database/select.inc |
Left Outer Join against another table in the database. |
SelectQueryExtender::nextPlaceholder |
core/includes/database/select.inc |
Returns the next placeholder ID for the query. |
SelectQueryExtender::notExists |
core/includes/database/select.inc |
Sets a condition that the specified subquery returns no values. |
SelectQueryExtender::orderBy |
core/includes/database/select.inc |
Orders the result set by a given field. |
SelectQueryExtender::orderRandom |
core/includes/database/select.inc |
Orders the result set by a random value. |
SelectQueryExtender::preExecute |
core/includes/database/select.inc |
Generic preparation and validation for a SELECT query. |
SelectQueryExtender::range |
core/includes/database/select.inc |
Restricts a query to a given range in the result set. |
SelectQueryExtender::rightJoin |
core/includes/database/select.inc |
Right Outer Join against another table in the database. |
SelectQueryExtender::union |
core/includes/database/select.inc |
Add another Select query to UNION to this one. |
SelectQueryExtender::uniqueIdentifier |
core/includes/database/select.inc |
Returns a unique identifier for this object. |
SelectQueryExtender::where |
core/includes/database/select.inc |
Adds an arbitrary WHERE clause to the query. |
SelectQueryExtender::__call |
core/includes/database/select.inc |
Magic override for undefined methods. |
SelectQueryExtender::__clone |
core/includes/database/select.inc |
Clone magic method. |
SelectQueryExtender::__construct |
core/includes/database/select.inc |
Creates a SelectQueryExtender object. |
SelectQueryExtender::__toString |
core/includes/database/select.inc |
String magic method. |
SelectQueryInterface::addExpression |
core/includes/database/select.inc |
Adds an expression to the list of "fields" to be selected. |
SelectQueryInterface::addField |
core/includes/database/select.inc |
Adds a field to the list to be SELECTed. |
SelectQueryInterface::addJoin |
core/includes/database/select.inc |
Join against another table in the database. |
SelectQueryInterface::countQuery |
core/includes/database/select.inc |
Get the equivalent COUNT query of this query as a new query object. |