|
DatabaseSchema_mysql::fieldSetDefault |
core/includes/database/mysql/schema.inc |
Set the default value for a field. |
|
DatabaseSchema_mysql::fieldSetNoDefault |
core/includes/database/mysql/schema.inc |
Set a field to have no default value. |
|
DatabaseSchema_mysql::indexExists |
core/includes/database/mysql/schema.inc |
Checks if an index exists in the given table. |
|
DatabaseSchema_mysql::addPrimaryKey |
core/includes/database/mysql/schema.inc |
Add a primary key. |
|
DatabaseSchema_mysql::dropPrimaryKey |
core/includes/database/mysql/schema.inc |
Drop the primary key. |
|
DatabaseSchema_mysql::addUniqueKey |
core/includes/database/mysql/schema.inc |
Add a unique key. |
|
DatabaseSchema_mysql::findTables |
core/includes/database/mysql/schema.inc |
Find all tables that are like the specified base table name. |
|
DatabaseSchema_mysql::dropUniqueKey |
core/includes/database/mysql/schema.inc |
Drop a unique key. |
|
DatabaseSchema_mysql::addIndex |
core/includes/database/mysql/schema.inc |
Add an index. |
|
DatabaseSchema_mysql::dropIndex |
core/includes/database/mysql/schema.inc |
Drop an index. |
|
DatabaseSchema_mysql::changeField |
core/includes/database/mysql/schema.inc |
Change a field definition. |
|
DatabaseSchema_mysql::prepareComment |
core/includes/database/mysql/schema.inc |
Prepare a table or column comment for database query. |
|
DatabaseSchema_mysql::getComment |
core/includes/database/mysql/schema.inc |
Retrieve a table or column comment. |
|
DatabaseStatementPrefetch::execute |
core/includes/database/prefetch.inc |
Executes a prepared statement. |
|
DatabaseStatementPrefetch::throwPDOException |
core/includes/database/prefetch.inc |
Throw a PDO Exception based on the last PDO error. |
|
DatabaseStatementPrefetch::getStatement |
core/includes/database/prefetch.inc |
Grab a PDOStatement object from a given query and its arguments. |
|
DatabaseStatementPrefetch::getQueryString |
core/includes/database/prefetch.inc |
Return the object's SQL query string. |
|
DatabaseStatementPrefetch::setFetchMode |
core/includes/database/prefetch.inc |
|
|
DatabaseStatementPrefetch::current |
core/includes/database/prefetch.inc |
|
|
DatabaseStatementPrefetch::key |
core/includes/database/prefetch.inc |
|
|
DatabaseStatementPrefetch::rewind |
core/includes/database/prefetch.inc |
|
|
DatabaseStatementPrefetch::next |
core/includes/database/prefetch.inc |
|
|
DatabaseStatementPrefetch::valid |
core/includes/database/prefetch.inc |
|
|
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. |
|
DatabaseStatementPrefetch::__construct |
core/includes/database/prefetch.inc |
Creates a prefetch database statement object. |
|
DeleteQuery::where |
core/includes/database/query.inc |
|
|
DeleteQuery::compile |
core/includes/database/query.inc |
Compiles the saved conditions for later retrieval. |
|
DeleteQuery::compiled |
core/includes/database/query.inc |
Check whether a condition has been previously compiled. |
|
DeleteQuery::execute |
core/includes/database/query.inc |
Executes the DELETE query. |
|
DeleteQuery::__toString |
core/includes/database/query.inc |
Implements PHP magic __toString method to convert the query to a string. |
|
TruncateQuery::__construct |
core/includes/database/query.inc |
Constructs a TruncateQuery object. |
|
TruncateQuery::execute |
core/includes/database/query.inc |
Executes the TRUNCATE query. |
|
TruncateQuery::__toString |
core/includes/database/query.inc |
Implements PHP magic __toString method to convert the query to a string. |
|
UpdateQuery::__construct |
core/includes/database/query.inc |
Constructs an UpdateQuery object. |
|
UpdateQuery::condition |
core/includes/database/query.inc |
|
|
UpdateQuery::isNull |
core/includes/database/query.inc |
|
|
UpdateQuery::isNotNull |
core/includes/database/query.inc |
|
|
UpdateQuery::exists |
core/includes/database/query.inc |
|
|
UpdateQuery::notExists |
core/includes/database/query.inc |
|
|
UpdateQuery::conditions |
core/includes/database/query.inc |
Gets a complete list of all conditions in this conditional clause. |
|
UpdateQuery::arguments |
core/includes/database/query.inc |
Gets a complete list of all values to insert into the prepared statement. |