|
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 |
|
|
DeleteQuery::isNull |
core/includes/database/query.inc |
|
|
DeleteQuery::isNotNull |
core/includes/database/query.inc |
|
|
DeleteQuery::exists |
core/includes/database/query.inc |
|
|
DeleteQuery::notExists |
core/includes/database/query.inc |
|
|
DeleteQuery::conditions |
core/includes/database/query.inc |
Gets a complete list of all conditions in this conditional clause. |
|
DeleteQuery::arguments |
core/includes/database/query.inc |
Gets a complete list of all values to insert into the prepared statement. |
|
DatabaseSchema::createTableSql |
core/includes/database/schema.inc |
Generate an array of query strings suitable for creating a table. |
|
DatabaseSchema::__construct |
core/includes/database/schema.inc |
Constructs a database schema object. |
|
DatabaseSchema::__clone |
core/includes/database/schema.inc |
Implements the magic __clone function. |
|
DatabaseSchema::uniqueIdentifier |
core/includes/database/schema.inc |
Returns a unique identifier for this object. |
|
DatabaseSchema::nextPlaceholder |
core/includes/database/schema.inc |
Returns the next placeholder ID for the query. |
|
DatabaseSchema::getPrefixInfo |
core/includes/database/schema.inc |
Get information about the table name and schema from the prefix. |
|
DatabaseSchema::prefixNonTable |
core/includes/database/schema.inc |
Create names for indexes, primary keys and constraints. |
|
DatabaseSchema::buildTableNameCondition |
core/includes/database/schema.inc |
Build a condition to match a table name against the information_schema. |
|
DatabaseSchema::tableExists |
core/includes/database/schema.inc |
Check if a table exists. |
|
DatabaseSchema::findTables |
core/includes/database/schema.inc |
Find all tables that are like the specified base table name. |
|
DatabaseSchema::fieldExists |
core/includes/database/schema.inc |
Check if a column exists in the given table. |
|
DatabaseSchema::getFieldTypeMap |
core/includes/database/schema.inc |
Returns a mapping of Backdrop schema field names to DB-native field types. |
|
DatabaseSchema::renameTable |
core/includes/database/schema.inc |
Rename a table. |