SelectQuery::extend |
function |
drupal/includes/database/select.inc |
Enhance this object by wrapping it in an extender object. |
SelectQueryExtender |
class |
drupal/includes/database/select.inc |
The base extender class for Select queries. |
search.extender.inc |
file |
drupal/modules/search/search.extender.inc |
Search query extender and helper functions. |
QueryExtendableInterface |
interface |
drupal/includes/database/select.inc |
Interface for extendable query objects. |
SelectQueryExtender::join |
function |
drupal/includes/database/select.inc |
Default Join against another table in the database. |
SelectQueryExtender::where |
function |
drupal/includes/database/select.inc |
Adds an arbitrary WHERE clause to the query. |
SelectQueryExtender::range |
function |
drupal/includes/database/select.inc |
Restricts a query to a given range in the result set. |
SelectQueryExtender::union |
function |
drupal/includes/database/select.inc |
Add another Select query to UNION to this one. |
SelectQueryExtender::__call |
function |
drupal/includes/database/select.inc |
Magic override for undefined methods. |
SelectQueryExtender::$query |
property |
drupal/includes/database/select.inc |
The SelectQuery object we are extending/decorating. |
SelectQueryExtender::addTag |
function |
drupal/includes/database/select.inc |
Adds a tag to a query. |
SelectQueryExtender::hasTag |
function |
drupal/includes/database/select.inc |
Determines if a given query has a given tag. |
SelectQueryExtender::having |
function |
drupal/includes/database/select.inc |
|
SelectQueryExtender::extend |
function |
drupal/includes/database/select.inc |
Enhance this object by wrapping it in an extender object. |
SelectQueryExtender::fields |
function |
drupal/includes/database/select.inc |
Add multiple fields from the same table to be SELECTed. |
SelectQueryExtender::isNull |
function |
drupal/includes/database/select.inc |
Sets a condition that the specified field be NULL. |
SelectQueryExtender::exists |
function |
drupal/includes/database/select.inc |
Sets a condition that the specified subquery returns values. |
SelectQueryExtender::__clone |
function |
drupal/includes/database/select.inc |
Clone magic method. |
SelectQueryExtender::compile |
function |
drupal/includes/database/select.inc |
Compiles the saved conditions for later retrieval. |
SelectQueryExtender::execute |
function |
drupal/includes/database/select.inc |
|
SelectQueryExtender::addJoin |
function |
drupal/includes/database/select.inc |
Join against another table in the database. |
SelectQueryExtender::orderBy |
function |
drupal/includes/database/select.inc |
Orders the result set by a given field. |
SelectQueryExtender::groupBy |
function |
drupal/includes/database/select.inc |
Groups the result set by the specified field. |
SelectQueryExtender::compiled |
function |
drupal/includes/database/select.inc |
Check whether a condition has been previously compiled. |
SelectQueryExtender::getUnion |
function |
drupal/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::distinct |
function |
drupal/includes/database/select.inc |
Sets this query to be DISTINCT. |
SelectQueryExtender::addField |
function |
drupal/includes/database/select.inc |
Adds a field to the list to be SELECTed. |
SelectQueryExtender::leftJoin |
function |
drupal/includes/database/select.inc |
Left Outer Join against another table in the database. |
UnicodeUnitTest::$extendedMode |
property |
drupal/modules/simpletest/tests/unicode.test |
Whether to run the extended version of the tests (including non latin1 characters). |
SelectQueryExtender::hasAnyTag |
function |
drupal/includes/database/select.inc |
Determines if a given query has any specified tag. |
SelectQueryExtender::condition |
function |
drupal/includes/database/select.inc |
Helper function: builds the most common conditional clauses. |
SelectQueryExtender::arguments |
function |
drupal/includes/database/select.inc |
Gets a complete list of all values to insert into the prepared statement. |
SelectQueryExtender::getFields |
function |
drupal/includes/database/select.inc |
Returns a reference to the fields array for this query. |
SelectQueryExtender::getTables |
function |
drupal/includes/database/select.inc |
Returns a reference to the tables array for this query. |
SelectQueryExtender::innerJoin |
function |
drupal/includes/database/select.inc |
Inner Join against another table in the database. |
SelectQueryExtender::rightJoin |
function |
drupal/includes/database/select.inc |
Right Outer Join against another table in the database. |
SelectQueryExtender::forUpdate |
function |
drupal/includes/database/select.inc |
Add FOR UPDATE to the query. |
SelectQueryExtender::isNotNull |
function |
drupal/includes/database/select.inc |
Sets a condition that the specified field be NOT NULL. |
SelectQueryExtender::notExists |
function |
drupal/includes/database/select.inc |
Sets a condition that the specified subquery returns no values. |
SelectQueryExtender::__toString |
function |
drupal/includes/database/select.inc |
|
SelectQueryExtender::hasAllTags |
function |
drupal/includes/database/select.inc |
Determines if a given query has all specified tags. |
SelectQueryExtender::conditions |
function |
drupal/includes/database/select.inc |
Gets a complete list of all conditions in this conditional clause. |
SelectQueryExtender::getOrderBy |
function |
drupal/includes/database/select.inc |
Returns a reference to the order by array for this query. |
SelectQueryExtender::getGroupBy |
function |
drupal/includes/database/select.inc |
Returns a reference to the group-by array for this query. |
SelectQueryExtender::isPrepared |
function |
drupal/includes/database/select.inc |
Indicates if preExecute() has already been called on that object. |
SelectQueryExtender::preExecute |
function |
drupal/includes/database/select.inc |
Generic preparation and validation for a SELECT query. |
SelectQueryExtender::countQuery |
function |
drupal/includes/database/select.inc |
Get the equivalent COUNT query of this query as a new query object. |
QueryExtendableInterface::extend |
function |
drupal/includes/database/select.inc |
Enhance this object by wrapping it in an extender object. |
SelectQueryExtender::$connection |
property |
drupal/includes/database/select.inc |
The connection object on which to run this query. |
SelectQueryExtender::__construct |
function |
drupal/includes/database/select.inc |
|