Query |
class |
drupal/includes/database/query.inc |
Base class for query builders. |
db_query |
function |
drupal/includes/database/database.inc |
Executes an arbitrary query string against the active database. |
query.inc |
file |
drupal/includes/database/sqlite/query.inc |
Query code for SQLite embedded database engine. |
query.inc |
file |
drupal/includes/database/mysql/query.inc |
Query code for MySQL embedded database engine. |
query.inc |
file |
drupal/includes/database/pgsql/query.inc |
Query code for PostgreSQL embedded database engine. |
query.inc |
file |
drupal/includes/database/query.inc |
Non-specific Database query code. Used by all engines. |
MergeQuery |
class |
drupal/includes/database/query.inc |
General class for an abstracted MERGE query operation. |
SelectQuery |
class |
drupal/includes/database/select.inc |
Query builder for SELECT statements. |
SearchQuery |
class |
drupal/modules/search/search.extender.inc |
Do a query on the full-text search index for a word or words. |
InsertQuery |
class |
drupal/includes/database/query.inc |
General class for an abstracted INSERT query. |
DeleteQuery |
class |
drupal/includes/database/query.inc |
General class for an abstracted DELETE operation. |
UpdateQuery |
class |
drupal/includes/database/query.inc |
General class for an abstracted UPDATE operation. |
TruncateQuery |
class |
drupal/includes/database/query.inc |
General class for an abstracted TRUNCATE operation. |
db_query_range |
function |
drupal/includes/database/database.inc |
Executes a query against the active database, restricted to a range. |
Query::__sleep |
function |
drupal/includes/database/query.inc |
Implements the magic __sleep function to disconnect from the database. |
Query::__clone |
function |
drupal/includes/database/query.inc |
Implements the magic __clone function. |
Query::execute |
function |
drupal/includes/database/query.inc |
Runs the query against the database. |
Query::comment |
function |
drupal/includes/database/query.inc |
Adds a comment to the query. |
NodeQueryAlter |
class |
drupal/modules/node/node.test |
Tests node_query_node_access_alter(). |
MergeQuery::key |
function |
drupal/includes/database/query.inc |
Sets the key field(s) to be used as conditions for this query. |
Query::__wakeup |
function |
drupal/includes/database/query.inc |
Implements the magic __wakeup function to reconnect to the database. |
EntityFieldQuery |
class |
drupal/includes/entity.inc |
Retrieves entities matching a given set of conditions. |
Query::$comments |
property |
drupal/includes/database/query.inc |
An array of comments that can be prepended to a query. |
hook_query_alter |
function |
drupal/modules/system/system.api.php |
Perform alterations to a structured query. |
MergeQuery::where |
function |
drupal/includes/database/query.inc |
Implements QueryConditionInterface::where(). |
SelectQuery::join |
function |
drupal/includes/database/select.inc |
Default Join against another table in the database. |
InsertQuery_mysql |
class |
drupal/includes/database/mysql/query.inc |
@file
Query code for MySQL embedded database engine. |
entity_query.test |
file |
drupal/modules/simpletest/tests/entity_query.test |
Unit test file for the entity API. |
SelectQuery_pgsql |
class |
drupal/includes/database/pgsql/select.inc |
|
InsertQuery_pgsql |
class |
drupal/includes/database/pgsql/query.inc |
@file
Query code for PostgreSQL embedded database engine. |
UpdateQuery_pgsql |
class |
drupal/includes/database/pgsql/query.inc |
|
Query::__toString |
function |
drupal/includes/database/query.inc |
Implements PHP magic __toString method to convert the query to a string. |
InsertQuery::from |
function |
drupal/includes/database/query.inc |
Sets the fromQuery on this InsertQuery object. |
jquery.ui.core.css |
file |
drupal/misc/ui/jquery.ui.core.css |
/*
* jQuery UI CSS Framework 1.8.7
*
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Theming/API
*/
/* Layout… |
MergeQuery::fields |
function |
drupal/includes/database/query.inc |
Sets common field-value pairs in the INSERT and UPDATE query parts. |
MergeQuery::isNull |
function |
drupal/includes/database/query.inc |
Implements QueryConditionInterface::isNull(). |
MergeQuery::exists |
function |
drupal/includes/database/query.inc |
Implements QueryConditionInterface::exists(). |
InsertQuery_sqlite |
class |
drupal/includes/database/sqlite/query.inc |
SQLite specific implementation of InsertQuery. |
SelectQuery::where |
function |
drupal/includes/database/select.inc |
Adds an arbitrary WHERE clause to the query. |
UpdateQuery_sqlite |
class |
drupal/includes/database/sqlite/query.inc |
SQLite specific implementation of UpdateQuery. |
DeleteQuery_sqlite |
class |
drupal/includes/database/sqlite/query.inc |
SQLite specific implementation of DeleteQuery. |
SelectQuery::range |
function |
drupal/includes/database/select.inc |
Restricts a query to a given range in the result set. |
SelectQuery::union |
function |
drupal/includes/database/select.inc |
Add another Select query to UNION to this one. |
SearchQuery::$type |
property |
drupal/modules/search/search.extender.inc |
Type of search (search module). |
db_query_temporary |
function |
drupal/includes/database/database.inc |
Executes a SELECT query string and saves the result set to a temporary table. |
SearchQuery::$keys |
property |
drupal/modules/search/search.extender.inc |
Positive and negative search keys. |
Query::$connection |
property |
drupal/includes/database/query.inc |
The connection object on which to run this query. |
Query::__construct |
function |
drupal/includes/database/query.inc |
Constructs a Query object. |
Query::getComments |
function |
drupal/includes/database/query.inc |
Returns a reference to the comments array for the query. |
DeleteQuery::where |
function |
drupal/includes/database/query.inc |
Implements QueryConditionInterface::where(). |