Name Locationsort descending Description
DatabaseStatementPrefetch::rowCount core/includes/database/prefetch.inc Returns the number of rows affected by the last SQL statement.
DatabaseStatementPrefetch::fetch core/includes/database/prefetch.inc
DatabaseStatementPrefetch::fetchColumn core/includes/database/prefetch.inc
DatabaseStatementPrefetch::fetchField core/includes/database/prefetch.inc Returns a single field from the next record of a result set.
DatabaseStatementPrefetch::fetchObject core/includes/database/prefetch.inc
DatabaseStatementPrefetch::fetchAssoc core/includes/database/prefetch.inc Fetches the next row and returns it as an associative array.
DatabaseStatementPrefetch::fetchAll core/includes/database/prefetch.inc
DatabaseStatementPrefetch::fetchCol core/includes/database/prefetch.inc Returns an entire single column of a result set as an indexed array.
DatabaseStatementPrefetch::fetchAllKeyed core/includes/database/prefetch.inc Returns the entire result set as a single associative array.
DatabaseStatementPrefetch::fetchAllAssoc core/includes/database/prefetch.inc Returns the result set as an associative array keyed by the given field.
QueryConditionInterface::condition core/includes/database/query.inc Helper function: builds the most common conditional clauses.
QueryConditionInterface::where core/includes/database/query.inc Adds an arbitrary WHERE clause to the query.
QueryConditionInterface::isNull core/includes/database/query.inc Sets a condition that the specified field be NULL.
QueryConditionInterface::isNotNull core/includes/database/query.inc Sets a condition that the specified field be NOT NULL.
QueryConditionInterface::exists core/includes/database/query.inc Sets a condition that the specified subquery returns values.
QueryConditionInterface::notExists core/includes/database/query.inc Sets a condition that the specified subquery returns no values.
QueryConditionInterface::conditions core/includes/database/query.inc Gets a complete list of all conditions in this conditional clause.
QueryConditionInterface::arguments core/includes/database/query.inc Gets a complete list of all values to insert into the prepared statement.
QueryConditionInterface::compile core/includes/database/query.inc Compiles the saved conditions for later retrieval.
QueryConditionInterface::compiled core/includes/database/query.inc Check whether a condition has been previously compiled.
QueryAlterableInterface::addTag core/includes/database/query.inc Adds a tag to a query.
QueryAlterableInterface::hasTag core/includes/database/query.inc Determines if a given query has a given tag.
QueryAlterableInterface::hasAllTags core/includes/database/query.inc Determines if a given query has all specified tags.
QueryAlterableInterface::hasAnyTag core/includes/database/query.inc Determines if a given query has any specified tag.
QueryAlterableInterface::addMetaData core/includes/database/query.inc Adds additional metadata to the query.
QueryAlterableInterface::getMetaData core/includes/database/query.inc Retrieves a given piece of metadata.
QueryPlaceholderInterface::uniqueIdentifier core/includes/database/query.inc Returns a unique identifier for this object.
QueryPlaceholderInterface::nextPlaceholder core/includes/database/query.inc Returns the next placeholder ID for the query.
Query::__construct core/includes/database/query.inc Constructs a Query object.
Query::__sleep core/includes/database/query.inc Implements the magic __sleep function to disconnect from the database.
Query::__wakeup core/includes/database/query.inc Implements the magic __wakeup function to reconnect to the database.
Query::__clone core/includes/database/query.inc Implements the magic __clone function.
Query::execute core/includes/database/query.inc Runs the query against the database.
Query::__toString core/includes/database/query.inc Implements PHP magic __toString method to convert the query to a string.
Query::uniqueIdentifier core/includes/database/query.inc Returns a unique identifier for this object.
Query::nextPlaceholder core/includes/database/query.inc Gets the next placeholder value for this query object.
Query::comment core/includes/database/query.inc Adds a comment to the query.
Query::getComments core/includes/database/query.inc Returns a reference to the comments array for the query.
InsertQuery::__construct core/includes/database/query.inc Constructs an InsertQuery object.
InsertQuery::fields core/includes/database/query.inc Adds a set of field->value pairs to be inserted.
InsertQuery::values core/includes/database/query.inc Adds another set of values to the query to be inserted.
InsertQuery::useDefaults core/includes/database/query.inc Specifies fields for which the database defaults should be used.
InsertQuery::from core/includes/database/query.inc Sets the fromQuery on this InsertQuery object.
InsertQuery::execute core/includes/database/query.inc Executes the insert query.
InsertQuery::__toString core/includes/database/query.inc Implements PHP magic __toString method to convert the query to a string.
InsertQuery::preExecute core/includes/database/query.inc Preprocesses and validates the query.
DeleteQuery::__construct core/includes/database/query.inc Constructs a DeleteQuery object.
DeleteQuery::condition core/includes/database/query.inc Implements QueryConditionInterface::condition().
DeleteQuery::isNull core/includes/database/query.inc Implements QueryConditionInterface::isNull().
DeleteQuery::isNotNull core/includes/database/query.inc Implements QueryConditionInterface::isNotNull().

Pages