MediaWiki
REL1_20
|
Database abstraction object. More...
Public Member Functions | |
__construct ($server=false, $user=false, $password=false, $dbName=false, $flags=0, $tablePrefix= 'get from global') | |
Constructor. | |
__destruct () | |
__sleep () | |
Called by serialize. | |
__toString () | |
addIdentifierQuotes ($s) | |
Quotes an identifier using `backticks` or "double quotes" depending on the database type. | |
addQuotes ($s) | |
If it's a string, adds quotes and backslashes Otherwise returns as-is. | |
aggregateValue ($valuedata, $valuename= 'value') | |
Return aggregated value alias. | |
anyChar () | |
Returns a token for buildLike() that denotes a '_' to be used in a LIKE query. | |
anyString () | |
Returns a token for buildLike() that denotes a '' to be used in a LIKE query. | |
begin ($fname= 'DatabaseBase::begin') | |
Begin a transaction. | |
bitAnd ($fieldLeft, $fieldRight) | |
bitNot ($field) | |
bitOr ($fieldLeft, $fieldRight) | |
bufferResults ($buffer=null) | |
Turns buffering of SQL result sets on (true) or off (false). | |
buildConcat ($stringList) | |
Build a concatenation list to feed into a SQL query. | |
buildLike () | |
LIKE statement wrapper, receives a variable-length argument list with parts of pattern to match containing either string literals that will be escaped or tokens returned by anyChar() or anyString(). | |
cascadingDeletes () | |
Returns true if this database supports (and uses) cascading deletes. | |
cleanupTriggers () | |
Returns true if this database supports (and uses) triggers (e.g. | |
clearFlag ($flag) | |
Clear a flag for this connection. | |
close () | |
Closes a database connection. | |
commit ($fname= 'DatabaseBase::commit') | |
End a transaction. | |
conditional ($cond, $trueVal, $falseVal) | |
Returns an SQL expression for a simple conditional. | |
deadlockLoop () | |
Perform a deadlock-prone transaction. | |
debug ($debug=null) | |
Boolean, controls output of large amounts of debug information. | |
decodeBlob ($b) | |
Some DBMSs return a special placeholder object representing blob fields in result objects. | |
decodeExpiry ($expiry, $format=TS_MW) | |
Decode an expiry time into a DBMS independent format. | |
delete ($table, $conds, $fname= 'DatabaseBase::delete') | |
DELETE query wrapper. | |
deleteJoin ($delTable, $joinTable, $delVar, $joinVar, $conds, $fname= 'DatabaseBase::deleteJoin') | |
DELETE where the condition is a join. | |
doneWrites () | |
Returns true if the connection may have been used for write queries. | |
dropTable ($tableName, $fName= 'DatabaseBase::dropTable') | |
Delete a table. | |
duplicateTableStructure ($oldName, $newName, $temporary=false, $fname= 'DatabaseBase::duplicateTableStructure') | |
Creates a new table with structure copied from existing table Note that unlike most database abstraction functions, this function does not automatically append database prefix, because it works at a lower abstraction level. | |
encodeBlob ($b) | |
Some DBMSs have a special format for inserting into blob fields, they don't allow simple quoted strings to be inserted. | |
encodeExpiry ($expiry) | |
Encode an expiry time into the DBMS dependent format. | |
errorCount ($count=null) | |
Get/set the number of errors logged. | |
estimateRowCount ($table, $vars= '*', $conds= '', $fname= 'DatabaseBase::estimateRowCount', $options=array()) | |
Estimate rows in dataset. | |
execute ($prepared, $args=null) | |
Execute a prepared query with the various arguments. | |
fieldExists ($table, $field, $fname= 'DatabaseBase::fieldExists') | |
Determines whether a field exists in a table. | |
fieldNamesWithAlias ($fields) | |
Gets an array of aliased field names. | |
fieldNameWithAlias ($name, $alias=false) | |
Get an aliased field name e.g. | |
fieldType ($res, $index) | |
mysql_field_type() wrapper | |
fillPrepared ($preparedQuery, $args) | |
For faking prepared SQL statements on DBs that don't support it directly. | |
freeResult ($res) | |
Free a result object returned by query() or select(). | |
functionalIndexes () | |
Returns true if this database can use functional indexes. | |
getDBname () | |
Get the current DB name. | |
getFlag ($flag) | |
Returns a boolean whether the flag $flag is set for this connection. | |
getInfinity () | |
Find out when 'infinity' is. | |
getLag () | |
Get slave lag. | |
getLBInfo ($name=null) | |
Get properties passed down from the server info array of the load balancer. | |
getMasterPos () | |
Get the position of this master. | |
getProperty ($name) | |
General read-only accessor. | |
getSchemaPath () | |
Return a path to the DBMS-specific schema file, otherwise default to tables.sql. | |
getSearchEngine () | |
Get search engine class. | |
getServer () | |
Get the server hostname or IP address. | |
getServerInfo () | |
A string describing the current software version, and possibly other details in a user-friendly way. | |
getServerUptime () | |
Determines how long the server has been up STUB. | |
getSlavePos () | |
Get the replication position of this slave. | |
getWikiID () | |
ignoreErrors ($ignoreErrors=null) | |
Turns on (false) or off (true) the automatic generation and sending of a "we're sorry, but there has been a database error" page on database errors. | |
implicitGroupby () | |
Returns true if this database does an implicit sort when doing GROUP BY. | |
implicitOrderby () | |
Returns true if this database does an implicit order by when the column has an index For example: SELECT page_title FROM page LIMIT 1. | |
indexExists ($table, $index, $fname= 'DatabaseBase::indexExists') | |
Determines whether an index exists Usually throws a DBQueryError on failure If errors are explicitly ignored, returns NULL on failure. | |
indexUnique ($table, $index) | |
Determines if a given index is unique. | |
insert ($table, $a, $fname= 'DatabaseBase::insert', $options=array()) | |
INSERT wrapper, inserts an array into a table. | |
insertSelect ($destTable, $srcTable, $varMap, $conds, $fname= 'DatabaseBase::insertSelect', $insertOptions=array(), $selectOptions=array()) | |
INSERT SELECT wrapper. | |
isOpen () | |
Is a connection to the database open? | |
isQuotedIdentifier ($name) | |
Returns if the given identifier looks quoted or not according to the database convention for quoting identifiers . | |
isWriteQuery ($sql) | |
Determine whether a query writes to the DB. | |
lastQuery () | |
Return the last query that went through DatabaseBase::query() | |
limitResult ($sql, $limit, $offset=false) | |
Construct a LIMIT query with optional offset. | |
listTables ($prefix=null, $fname= 'DatabaseBase::listTables') | |
List all tables on the database. | |
lock ($lockName, $method, $timeout=5) | |
Acquire a named lock. | |
lockIsFree ($lockName, $method) | |
Check to see if a named lock is available. | |
lockTables ($read, $write, $method, $lowPriority=true) | |
Lock specific tables. | |
lowPriorityOption () | |
A string to insert into queries to show that they're low-priority, like MySQL's LOW_PRIORITY. | |
makeList ($a, $mode=LIST_COMMA) | |
Makes an encoded list of strings from an array. | |
makeSelectOptions ($options) | |
Returns an optional USE INDEX clause to go after the table, and a string to go at the end of the query. | |
makeWhereFrom2d ($data, $baseKey, $subKey) | |
Build a partial where clause from a 2-d array such as used for LinkBatch. | |
masterPosWait (DBMasterPos $pos, $timeout) | |
Wait for the slave to catch up to a given master position. | |
maxListLen () | |
Return the maximum number of items allowed in a list, or 0 for unlimited. | |
nextSequenceValue ($seqName) | |
Returns an appropriately quoted sequence value for inserting a new row. | |
onTransactionIdle (Closure $callback) | |
Run an anonymous function as soon as there is no transaction pending. | |
patchPath ($patch) | |
Get the full path of a patch file. | |
ping () | |
Ping the server and try to reconnect if it there is no connection. | |
query ($sql, $fname= '', $tempIgnore=false) | |
Run an SQL query and return the result. | |
realTimestamps () | |
Returns true if this database uses timestamps rather than integers. | |
replace ($table, $uniqueIndexes, $rows, $fname= 'DatabaseBase::replace') | |
REPLACE query wrapper. | |
reportConnectionError ($error= 'Unknown error') | |
reportQueryError ($error, $errno, $sql, $fname, $tempIgnore=false) | |
Report a query error. | |
resultObject ($result) | |
Take the result from a query, and wrap it in a ResultWrapper if necessary. | |
rollback ($fname= 'DatabaseBase::rollback') | |
Rollback a transaction. | |
searchableIPs () | |
Returns true if this database can do a native search on IP columns e.g. | |
select ($table, $vars, $conds= '', $fname= 'DatabaseBase::select', $options=array(), $join_conds=array()) | |
Execute a SELECT query constructed using the various parameters provided. | |
selectDB ($db) | |
Change the current database. | |
selectField ($table, $var, $cond= '', $fname= 'DatabaseBase::selectField', $options=array()) | |
A SELECT wrapper which returns a single field from a single result row. | |
selectRow ($table, $vars, $conds, $fname= 'DatabaseBase::selectRow', $options=array(), $join_conds=array()) | |
Single row SELECT wrapper. | |
selectSQLText ($table, $vars, $conds= '', $fname= 'DatabaseBase::select', $options=array(), $join_conds=array()) | |
The equivalent of DatabaseBase::select() except that the constructed SQL is returned, instead of being immediately executed. | |
setBigSelects ($value=true) | |
Allow or deny "big selects" for this session only. | |
setFakeMaster ($enabled=true) | |
Make this connection a fake master. | |
setFakeSlaveLag ($lag) | |
Set lag time in seconds for a fake slave. | |
setFlag ($flag) | |
Set a flag for this connection. | |
setLBInfo ($name, $value=null) | |
Set the LB info array, or a member of it. | |
setSchemaVars ($vars) | |
Set variables to be used in sourceFile/sourceStream, in preference to the ones in $GLOBALS. | |
setSessionOptions (array $options) | |
Override database's default behavior. | |
sourceFile ($filename, $lineCallback=false, $resultCallback=false, $fname=false) | |
Read and execute SQL commands from a file. | |
sourceStream ($fp, $lineCallback=false, $resultCallback=false, $fname= 'DatabaseBase::sourceStream', $inputCallback=false) | |
Read and execute commands from an open file handle. | |
streamStatementEnd (&$sql, &$newLine) | |
Called by sourceStream() to check if we've reached a statement end. | |
strictIPs () | |
Returns true if this database is strict about what can be put into an IP field. | |
strreplace ($orig, $old, $new) | |
Returns a comand for str_replace function in SQL query. | |
tableExists ($table, $fname=__METHOD__) | |
Query whether a given table exists. | |
tableName ($name, $format= 'quoted') | |
Format a table name ready for use in constructing an SQL query. | |
tableNames () | |
Fetch a number of table names into an array This is handy when you need to construct SQL for joins. | |
tableNamesN () | |
Fetch a number of table names into an zero-indexed numerical array This is handy when you need to construct SQL for joins. | |
tableNamesWithAlias ($tables) | |
Gets an array of aliased table names. | |
tableNameWithAlias ($name, $alias=false) | |
Get an aliased table name e.g. | |
tablePrefix ($prefix=null) | |
Get/set the table prefix. | |
textFieldSize ($table, $field) | |
Returns the size of a text field, or -1 for "unlimited". | |
timestamp ($ts=0) | |
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting into timestamp fields in this DBMS. | |
timestampOrNull ($ts=null) | |
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting into timestamp fields in this DBMS. | |
trxLevel ($level=null) | |
Gets or sets the current transaction level. | |
unionQueries ($sqls, $all) | |
Construct a UNION query This is used for providing overload point for other DB abstractions not compatible with the MySQL syntax. | |
unionSupportsOrderAndLimit () | |
Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries within the UNION construct. | |
unlock ($lockName, $method) | |
Release a lock. | |
unlockTables ($method) | |
Unlock specific tables. | |
update ($table, $values, $conds, $fname= 'DatabaseBase::update', $options=array()) | |
UPDATE wrapper. | |
useIndexClause ($index) | |
USE INDEX clause. | |
wasDeadlock () | |
Determines if the last failure was due to a deadlock STUB. | |
wasErrorReissuable () | |
Determines if the last query error was something that should be dealt with by pinging the connection and reissuing the query. | |
wasLockTimeout () | |
Determines if the last failure was due to a lock timeout STUB. | |
wasReadOnlyError () | |
Determines if the last failure was due to the database being read-only. | |
writesOrCallbacksPending () | |
Returns true if there is a transaction open with possible write queries or transaction idle callbacks waiting on it to finish. | |
Static Public Member Functions | |
static | factory ($dbType, $p=array()) |
Given a DB type, construct the name of the appropriate child class of DatabaseBase. | |
static | generalizeSQL ($sql) |
Removes most variables from an SQL query and replaces them with X or N for numbers. | |
Public Attributes | |
$mDBname | |
$mFakeMaster = false | |
$mPassword | |
$mUser | |
Protected Member Functions | |
closeConnection () | |
Closes underlying database connection. | |
connectionErrorHandler ($errno, $errstr) | |
doBegin ($fname) | |
doCommit ($fname) | |
doQuery ($sql) | |
The DBMS-dependent part of query() | |
doRollback ($fname) | |
escapeLikeInternal ($s) | |
fillPreparedArg ($matches) | |
preg_callback func for fillPrepared() The arguments should be in $this->preparedArgs and must not be touched while we're doing this. | |
freePrepared ($prepared) | |
Free a prepared query, generated by prepare(). | |
getDefaultSchemaVars () | |
Get schema variables to use if none have been set via setSchemaVars(). | |
getSchemaVars () | |
Get schema variables. | |
indexName ($index) | |
Get the name of an index in a given table. | |
indexNameCallback ($matches) | |
Index name callback. | |
installErrorHandler () | |
makeInsertOptions ($options) | |
Helper for DatabaseBase::insert(). | |
makeUpdateOptions ($options) | |
Make UPDATE options for the DatabaseBase::update function. | |
nativeReplace ($table, $rows, $fname) | |
REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE statement. | |
prepare ($sql, $func= 'DatabaseBase::prepare') | |
Intended to be compatible with the PEAR::DB wrapper functions. | |
replaceSchemaVars ($ins) | |
Database independent variable replacement. | |
replaceVars ($ins) | |
Replace variables in sourced SQL. | |
restoreErrorHandler () | |
runOnTransactionIdleCallbacks () | |
Actually run the "on transaction idle" callbacks. | |
tableNameCallback ($matches) | |
Table name callback. | |
tableNamesWithUseIndexOrJOIN ($tables, $use_index=array(), $join_conds=array()) | |
Get the aliased table name clause for a FROM clause which might have a JOIN and/or USE INDEX clause. | |
Protected Attributes | |
$delimiter = ';' | |
$htmlErrors | |
$mConn = null | |
$mDefaultBigSelects = null | |
$mDoneWrites = false | |
$mErrorCount = 0 | |
$mFakeSlaveLag = null | |
$mFlags | |
$mLastQuery = '' | |
$mLBInfo = array() | |
$mOpened = false | |
$mPHPError = false | |
$mSchemaVars = false | |
$mServer | |
$mTablePrefix | |
array | $mTrxIdleCallbacks = array() |
$mTrxLevel = 0 | |
$preparedArgs |
Database abstraction object.
Definition at line 216 of file Database.php.
DatabaseBase::__construct | ( | $ | server = false , |
$ | user = false , |
||
$ | password = false , |
||
$ | dbName = false , |
||
$ | flags = 0 , |
||
$ | tablePrefix = 'get from global' |
||
) |
Constructor.
$server | String: database server host |
$user | String: database user name |
$password | String: database user password |
$dbName | String: database name |
$flags | |
$tablePrefix | String: database table prefixes. By default use the prefix gave in LocalSettings.php |
Reimplemented in DatabaseIbm_db2, and DatabaseOracle.
Definition at line 614 of file Database.php.
Reimplemented in DatabaseOracle.
Definition at line 3520 of file Database.php.
Called by serialize.
Throw an exception when DB connection is serialized. This causes problems on some database engines because the connection is not restored on unserialize.
Definition at line 652 of file Database.php.
Definition at line 3516 of file Database.php.
Quotes an identifier using `backticks` or "double quotes" depending on the database type.
MySQL uses `backticks` while basically everything else uses double quotes. Since MySQL is the odd one out here the double quotes are our generic and we implement backticks in DatabaseMysql.
$s | string |
Reimplemented in DatabaseOracle, DatabaseMssql, and DatabaseMysql.
Definition at line 2216 of file Database.php.
Referenced by DatabasePostgres\determineCoreSchema(), and DatabasePostgres\duplicateTableStructure().
DatabaseBase::addQuotes | ( | $ | s | ) |
If it's a string, adds quotes and backslashes Otherwise returns as-is.
$s | string |
Reimplemented in DatabasePostgres, DatabaseOracle, DatabaseMssql, DatabaseIbm_db2, and DatabaseSqlite.
Definition at line 2194 of file Database.php.
Referenced by RefreshImageMetadata\execute(), DatabaseMysql\lock(), DatabaseMysql\lockIsFree(), DatabaseMysql\masterPosWait(), DatabaseMysql\open(), and DatabaseMysql\unlock().
DatabaseBase::aggregateValue | ( | $ | valuedata, |
$ | valuename = 'value' |
||
) |
Return aggregated value alias.
$valuedata | |
$valuename | string |
Reimplemented in DatabasePostgres, and DatabaseOracle.
Definition at line 1838 of file Database.php.
Returns a token for buildLike() that denotes a '_' to be used in a LIKE query.
Definition at line 2281 of file Database.php.
Returns a token for buildLike() that denotes a '' to be used in a LIKE query.
Definition at line 2290 of file Database.php.
DatabaseBase::begin | ( | $ | fname = 'DatabaseBase::begin' | ) | [final] |
Begin a transaction.
$fname | string |
Definition at line 2896 of file Database.php.
Referenced by DatabaseIbm_db2\applySchema(), DatabasePostgres\determineCoreSchema(), and DatabaseIbm_db2\insert().
DatabaseBase::bitAnd | ( | $ | fieldLeft, |
$ | fieldRight | ||
) |
$fieldLeft | |
$fieldRight |
Reimplemented in DatabaseIbm_db2, and DatabaseOracle.
Definition at line 1855 of file Database.php.
DatabaseBase::bitNot | ( | $ | field | ) |
$field |
Reimplemented in DatabaseIbm_db2, and DatabaseOracle.
Definition at line 1846 of file Database.php.
DatabaseBase::bitOr | ( | $ | fieldLeft, |
$ | fieldRight | ||
) |
$fieldLeft | |
$fieldRight |
Reimplemented in DatabaseIbm_db2, and DatabaseOracle.
Definition at line 1864 of file Database.php.
DatabaseBase::bufferResults | ( | $ | buffer = null | ) |
Turns buffering of SQL result sets on (true) or off (false).
Default is "on".
Unbuffered queries are very troublesome in MySQL:
If you want to limit client-side memory, it's almost always better to split up queries into batches using a LIMIT clause than to switch off buffering.
$buffer | null|bool |
Definition at line 302 of file Database.php.
Referenced by DatabaseMysql\doQuery().
DatabaseBase::buildConcat | ( | $ | stringList | ) |
Build a concatenation list to feed into a SQL query.
$stringList | Array: list of raw SQL expressions; caller is responsible for any quoting |
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseMssql, and DatabaseSqlite.
Definition at line 1873 of file Database.php.
LIKE statement wrapper, receives a variable-length argument list with parts of pattern to match containing either string literals that will be escaped or tokens returned by anyChar() or anyString().
Alternatively, the function could be provided with an array of aforementioned parameters.
Example: $dbr->buildLike( 'My_page_title/', $dbr->anyString() ) returns a LIKE clause that searches for subpages of 'My page title'. Alternatively: $pattern = array( 'My_page_title/', $dbr->anyString() ); $query .= $dbr->buildLike( $pattern );
Reimplemented in DatabaseSqlite.
Definition at line 2256 of file Database.php.
Returns true if this database supports (and uses) cascading deletes.
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, and DatabaseMssql.
Definition at line 416 of file Database.php.
Returns true if this database supports (and uses) triggers (e.g.
on the page table)
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, and DatabaseMssql.
Definition at line 425 of file Database.php.
DatabaseBase::clearFlag | ( | $ | flag | ) |
Clear a flag for this connection.
$flag,: | same as setFlag()'s $flag param |
Definition at line 547 of file Database.php.
Closes a database connection.
if it is open : commits any open transactions
Definition at line 736 of file Database.php.
Referenced by DatabaseOracle\__destruct(), DatabaseMysql\open(), DatabaseMssql\open(), DatabaseOracle\open(), DatabasePostgres\open(), DatabaseIbm_db2\open(), and DatabaseIbm_db2\ping().
DatabaseBase::closeConnection | ( | ) | [abstract, protected] |
Closes underlying database connection.
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, DatabaseMysql, DatabaseSqlite, and DatabaseMssql.
DatabaseBase::commit | ( | $ | fname = 'DatabaseBase::commit' | ) | [final] |
End a transaction.
$fname | string |
Definition at line 2918 of file Database.php.
Referenced by DatabaseIbm_db2\applySchema(), DatabasePostgres\determineCoreSchema(), DatabaseSqlite\doBegin(), DatabaseIbm_db2\insert(), and DatabaseMysql\masterPosWait().
DatabaseBase::conditional | ( | $ | cond, |
$ | trueVal, | ||
$ | falseVal | ||
) |
Returns an SQL expression for a simple conditional.
This doesn't need to be overridden unless CASE isn't supported in your DBMS.
$cond | string|array SQL expression which will result in a boolean value |
$trueVal | String: SQL expression to return if true |
$falseVal | String: SQL expression to return if false |
Definition at line 2650 of file Database.php.
DatabaseBase::connectionErrorHandler | ( | $ | errno, |
$ | errstr | ||
) | [protected] |
$errno | |
$errstr |
Definition at line 726 of file Database.php.
Perform a deadlock-prone transaction.
This function invokes a callback function to perform a set of write queries. If a deadlock occurs during the processing, the transaction will be rolled back and the callback function will be called again.
Usage: $dbw->deadlockLoop( callback, ... );
Extra arguments are passed through to the specified callback function.
Returns whatever the callback function returned on its successful, iteration, or false on error, for example if the retry limit was reached.
Reimplemented in DatabaseSqlite.
Definition at line 2740 of file Database.php.
DatabaseBase::debug | ( | $ | debug = null | ) |
Boolean, controls output of large amounts of debug information.
$debug | bool|null
|
Definition at line 276 of file Database.php.
DatabaseBase::decodeBlob | ( | $ | b | ) |
Some DBMSs return a special placeholder object representing blob fields in result objects.
Pass the object through this function to return the original string.
$b | string |
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseMssql, DatabaseOracle, and DatabaseSqlite.
Definition at line 3102 of file Database.php.
DatabaseBase::decodeExpiry | ( | $ | expiry, |
$ | format = TS_MW |
||
) |
Decode an expiry time into a DBMS independent format.
$expiry | String: DB timestamp field value for expiry |
$format | integer: TS_* constant, defaults to TS_MW |
Definition at line 3494 of file Database.php.
DatabaseBase::delete | ( | $ | table, |
$ | conds, | ||
$ | fname = 'DatabaseBase::delete' |
||
) |
DELETE query wrapper.
$table | Array Table name |
$conds | String|Array of conditions. See $conds in DatabaseBase::select() for the format. Use $conds == "*" to delete all rows |
$fname | String name of the calling function |
Reimplemented in DatabaseOracle, and DatabaseIbm_db2.
Definition at line 2512 of file Database.php.
DatabaseBase::deleteJoin | ( | $ | delTable, |
$ | joinTable, | ||
$ | delVar, | ||
$ | joinVar, | ||
$ | conds, | ||
$ | fname = 'DatabaseBase::deleteJoin' |
||
) |
DELETE where the condition is a join.
MySQL overrides this to use a multi-table DELETE syntax, in other databases we use sub-selects
For safety, an empty $conds will not delete everything. If you want to delete all rows where the join condition matches, set $conds='*'.
DO NOT put the join condition in $conds.
$delTable | String: The table to delete from. |
$joinTable | String: The other table. |
$delVar | String: The variable to join on, in the first table. |
$joinVar | String: The variable to join on, in the second table. |
$conds | Array: Condition array of field names mapped to variables, ANDed together in the WHERE clause |
$fname | String: Calling function name (use __METHOD__) for logs/profiling |
Reimplemented in DatabaseMysql.
Definition at line 2446 of file Database.php.
DatabaseBase::doBegin | ( | $ | fname | ) | [protected] |
type | $fname |
Reimplemented in DatabaseOracle, DatabaseIbm_db2, DatabaseMssql, and DatabaseSqlite.
Definition at line 2908 of file Database.php.
DatabaseBase::doCommit | ( | $ | fname | ) | [protected] |
type | $fname |
Reimplemented in DatabaseOracle, DatabaseIbm_db2, DatabaseMssql, and DatabaseSqlite.
Definition at line 2927 of file Database.php.
Returns true if the connection may have been used for write queries.
Should return true if unsure.
Definition at line 500 of file Database.php.
DatabaseBase::doQuery | ( | $ | sql | ) | [abstract, protected] |
The DBMS-dependent part of query()
$sql | String: SQL query. |
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, DatabaseSqlite, DatabaseMssql, and DatabaseMysql.
DatabaseBase::doRollback | ( | $ | fname | ) | [protected] |
type | $fname |
Reimplemented in DatabaseOracle, DatabaseIbm_db2, DatabaseMssql, and DatabaseSqlite.
Definition at line 2949 of file Database.php.
DatabaseBase::dropTable | ( | $ | tableName, |
$ | fName = 'DatabaseBase::dropTable' |
||
) |
Delete a table.
$tableName | string |
$fName | string |
Reimplemented in DatabaseMysql, and DatabaseOracle.
Definition at line 3443 of file Database.php.
DatabaseBase::duplicateTableStructure | ( | $ | oldName, |
$ | newName, | ||
$ | temporary = false , |
||
$ | fname = 'DatabaseBase::duplicateTableStructure' |
||
) |
Creates a new table with structure copied from existing table Note that unlike most database abstraction functions, this function does not automatically append database prefix, because it works at a lower abstraction level.
The table names passed to this function shall not be quoted (this function calls addIdentifierQuotes when needed).
$oldName | String: name of table whose structure should be copied |
$newName | String: name of table to be created |
$temporary | Boolean: whether the new table should be temporary |
$fname | String: calling function name |
Reimplemented in DatabasePostgres, DatabaseMysql, DatabaseSqlite, and DatabaseOracle.
Definition at line 2970 of file Database.php.
DatabaseBase::encodeBlob | ( | $ | b | ) |
Some DBMSs have a special format for inserting into blob fields, they don't allow simple quoted strings to be inserted.
To insert into such a field, pass the data through this function before passing it to DatabaseBase::insert().
$b | string |
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseMssql, DatabaseOracle, and DatabaseSqlite.
Definition at line 3091 of file Database.php.
DatabaseBase::encodeExpiry | ( | $ | expiry | ) |
Encode an expiry time into the DBMS dependent format.
$expiry | String: timestamp for expiry, or the 'infinity' string |
Definition at line 3481 of file Database.php.
DatabaseBase::errorCount | ( | $ | count = null | ) |
Get/set the number of errors logged.
Only useful when errors are ignored
$count | int The count to set, or omitted to leave it unchanged. |
Definition at line 343 of file Database.php.
DatabaseBase::escapeLikeInternal | ( | $ | s | ) | [protected] |
DatabaseBase::estimateRowCount | ( | $ | table, |
$ | vars = '*' , |
||
$ | conds = '' , |
||
$ | fname = 'DatabaseBase::estimateRowCount' , |
||
$ | options = array() |
||
) |
Estimate rows in dataset.
MySQL allows you to estimate the number of rows that would be returned by a SELECT query, using EXPLAIN SELECT. The estimate is provided using index cardinality statistics, and is notoriously inaccurate, especially when large numbers of rows have recently been added or deleted.
For DBMSs that don't support fast result size estimation, this function will actually perform the SELECT COUNT(*).
Takes the same arguments as DatabaseBase::select().
$table | String: table name | |
Array | string | $vars | : unused |
Array | string | $conds | : filters on the table |
$fname | String: function name for profiling | |
$options | Array: options for select |
Reimplemented in DatabasePostgres, DatabaseMysql, and DatabaseMssql.
Definition at line 1464 of file Database.php.
DatabaseBase::execute | ( | $ | prepared, |
$ | args = null |
||
) |
Execute a prepared query with the various arguments.
$prepared | String: the prepared sql |
$args | Mixed: Either an array here, or put scalars as varargs |
Reimplemented in DatabaseIbm_db2.
Definition at line 988 of file Database.php.
static DatabaseBase::factory | ( | $ | dbType, |
$ | p = array() |
||
) | [static, final] |
Given a DB type, construct the name of the appropriate child class of DatabaseBase.
This is designed to replace all of the manual stuff like: $class = 'Database' . ucfirst( strtolower( $type ) ); as well as validate against the canonical list of DB types we have
This factory function is mostly useful for when you need to connect to a database other than the MediaWiki default (such as for external auth, an extension, et cetera). Do not use this to connect to the MediaWiki database. Example uses in core:
$dbType | String A possible DB type |
$p | Array An array of options to pass to the constructor. Valid options are: host, user, password, dbname, flags, tablePrefix |
Definition at line 678 of file Database.php.
Referenced by WebInstaller_DBConnect\execute(), ExternalUser_vB\getDb(), ForeignDBRepo\getMasterDB(), and LoadBalancer\reallyOpenConnection().
DatabaseBase::fieldExists | ( | $ | table, |
$ | field, | ||
$ | fname = 'DatabaseBase::fieldExists' |
||
) |
Determines whether a field exists in a table.
$table | String: table name |
$field | String: filed to check on that table |
$fname | String: calling function name (optional) |
Reimplemented in DatabaseMssql.
Definition at line 1514 of file Database.php.
DatabaseBase::fieldNamesWithAlias | ( | $ | fields | ) |
Gets an array of aliased field names.
$fields | array( [alias] => field ) |
Definition at line 2092 of file Database.php.
DatabaseBase::fieldNameWithAlias | ( | $ | name, |
$ | alias = false |
||
) |
Get an aliased field name e.g.
fieldName AS newFieldName
$name | string Field name |
$alias | string|bool Alias (optional) |
Definition at line 2078 of file Database.php.
DatabaseBase::fieldType | ( | $ | res, |
$ | index | ||
) |
mysql_field_type() wrapper
$res | |
$index |
Reimplemented in DatabaseIbm_db2, and DatabasePostgres.
Definition at line 1563 of file Database.php.
DatabaseBase::fillPrepared | ( | $ | preparedQuery, |
$ | args | ||
) |
For faking prepared SQL statements on DBs that don't support it directly.
$preparedQuery | String: a 'preparable' SQL statement |
$args | Array of arguments to fill it with |
Reimplemented in DatabaseIbm_db2.
Definition at line 1007 of file Database.php.
DatabaseBase::fillPreparedArg | ( | $ | matches | ) | [protected] |
preg_callback func for fillPrepared() The arguments should be in $this->preparedArgs and must not be touched while we're doing this.
$matches | Array |
Reimplemented in DatabaseIbm_db2.
Definition at line 1023 of file Database.php.
DatabaseBase::freePrepared | ( | $ | prepared | ) | [protected] |
Free a prepared query, generated by prepare().
$prepared |
Reimplemented in DatabaseIbm_db2.
Definition at line 977 of file Database.php.
DatabaseBase::freeResult | ( | $ | res | ) |
Free a result object returned by query() or select().
It's usually not necessary to call this, just use unset() or let the variable holding the result object go out of scope.
$res | Mixed: A SQL result |
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, DatabaseSqlite, DatabaseMysql, and DatabaseMssql.
Definition at line 1050 of file Database.php.
Returns true if this database can use functional indexes.
Reimplemented in DatabaseIbm_db2, DatabasePostgres, and DatabaseMssql.
Definition at line 482 of file Database.php.
static DatabaseBase::generalizeSQL | ( | $ | sql | ) | [static] |
Removes most variables from an SQL query and replaces them with X or N for numbers.
It's only slightly flawed. Don't use for anything important.
$sql | String A SQL Query |
Definition at line 1486 of file Database.php.
Get the current DB name.
Reimplemented in DatabasePostgres, and DatabaseOracle.
Definition at line 1897 of file Database.php.
DatabaseBase::getDefaultSchemaVars | ( | ) | [protected] |
Get schema variables to use if none have been set via setSchemaVars().
Override this in derived classes to provide variables for tables.sql and SQL patch files.
Reimplemented in DatabaseMysql.
Definition at line 3344 of file Database.php.
DatabaseBase::getFlag | ( | $ | flag | ) |
Returns a boolean whether the flag $flag is set for this connection.
$flag,: | same as setFlag()'s $flag param |
Definition at line 561 of file Database.php.
Referenced by DatabaseOracle\doQuery().
Find out when 'infinity' is.
Most DBMSes support this. This is a special keyword for timestamps in PostgreSQL, and works with CHAR(14) as well because "i" sorts after all numbers.
Reimplemented in DatabaseOracle, and DatabaseMssql.
Definition at line 3471 of file Database.php.
Get slave lag.
Currently supported only by MySQL.
Note that this function will generate a fatal error on many installations. Most callers should use LoadBalancer::safeGetLag() instead.
Reimplemented in DatabaseMysql.
Definition at line 3070 of file Database.php.
DatabaseBase::getLBInfo | ( | $ | name = null | ) |
Get properties passed down from the server info array of the load balancer.
$name | string The entry of the info array to get, or null to get the whole array |
Definition at line 365 of file Database.php.
Get the position of this master.
Reimplemented in DatabaseMysql.
Definition at line 2841 of file Database.php.
DatabaseBase::getProperty | ( | $ | name | ) |
General read-only accessor.
$name | string |
Definition at line 572 of file Database.php.
Return a path to the DBMS-specific schema file, otherwise default to tables.sql.
Definition at line 592 of file Database.php.
DatabaseBase::getSchemaVars | ( | ) | [protected] |
Get schema variables.
If none have been set via setSchemaVars(), then use some defaults from the current object.
Definition at line 3328 of file Database.php.
Get search engine class.
All subclasses of this need to implement this if they wish to use searching.
Reimplemented in DatabasePostgres, DatabaseIbm_db2, DatabaseOracle, DatabaseMssql, DatabaseMysql, and DatabaseSqlite.
Definition at line 3460 of file Database.php.
Get the server hostname or IP address.
Reimplemented in DatabasePostgres, and DatabaseOracle.
Definition at line 1904 of file Database.php.
A string describing the current software version, and possibly other details in a user-friendly way.
Will be listed on Special:Version, etc. Use getServerVersion() to get machine-friendly information.
Implements DatabaseType.
Reimplemented in DatabaseSqlite.
Definition at line 263 of file Database.php.
Determines how long the server has been up STUB.
Reimplemented in DatabaseMysql.
Definition at line 2677 of file Database.php.
Get the replication position of this slave.
Reimplemented in DatabaseMysql.
Definition at line 2825 of file Database.php.
DatabaseBase::ignoreErrors | ( | $ | ignoreErrors = null | ) |
Turns on (false) or off (true) the automatic generation and sending of a "we're sorry, but there has been a database error" page on database errors.
Default is on (false). When turned off, the code should use lastErrno() and lastError() to handle the situation as appropriate.
$ignoreErrors | bool|null |
Definition at line 321 of file Database.php.
Returns true if this database does an implicit sort when doing GROUP BY.
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, DatabaseSqlite, and DatabaseMssql.
Definition at line 453 of file Database.php.
Returns true if this database does an implicit order by when the column has an index For example: SELECT page_title FROM page LIMIT 1.
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, and DatabaseMssql.
Definition at line 463 of file Database.php.
DatabaseBase::indexExists | ( | $ | table, |
$ | index, | ||
$ | fname = 'DatabaseBase::indexExists' |
||
) |
Determines whether an index exists Usually throws a DBQueryError on failure If errors are explicitly ignored, returns NULL on failure.
$table | |
$index | |
$fname | string |
Reimplemented in DatabaseOracle.
Definition at line 1531 of file Database.php.
DatabaseBase::indexName | ( | $ | index | ) | [protected] |
Get the name of an index in a given table.
$index |
Reimplemented in DatabaseSqlite.
Definition at line 2171 of file Database.php.
Referenced by DatabaseMysql\indexInfo(), DatabasePostgres\indexUnique(), and DatabaseMysql\useIndexClause().
DatabaseBase::indexNameCallback | ( | $ | matches | ) | [protected] |
Index name callback.
$matches | array |
Definition at line 3366 of file Database.php.
DatabaseBase::indexUnique | ( | $ | table, |
$ | index | ||
) |
Determines if a given index is unique.
$table | string |
$index | string |
Definition at line 1579 of file Database.php.
DatabaseBase::insert | ( | $ | table, |
$ | a, | ||
$ | fname = 'DatabaseBase::insert' , |
||
$ | options = array() |
||
) |
INSERT wrapper, inserts an array into a table.
$a may be either:
Usually throws a DBQueryError on failure. If errors are explicitly ignored, returns success.
$options is an array of options, with boolean options encoded as values with numeric keys, in the same style as $options in DatabaseBase::select(). Supported options are:
$table | String Table name. This will be passed through DatabaseBase::tableName(). |
$a | Array of rows to insert |
$fname | String Calling function name (use __METHOD__) for logs/profiling |
$options | Array of options |
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseSqlite, DatabaseOracle, and DatabaseMssql.
Definition at line 1632 of file Database.php.
DatabaseBase::insertSelect | ( | $ | destTable, |
$ | srcTable, | ||
$ | varMap, | ||
$ | conds, | ||
$ | fname = 'DatabaseBase::insertSelect' , |
||
$ | insertOptions = array() , |
||
$ | selectOptions = array() |
||
) |
INSERT SELECT wrapper.
Takes data from a SELECT query and inserts it into another table.
$destTable | string The table name to insert into |
$srcTable | string|array May be either a table name, or an array of table names to include in a join. |
$varMap | array must be an associative array of the form array( 'dest1' => 'source1', ...). Source items may be literals rather than field names, but strings should be quoted with DatabaseBase::addQuotes() |
$conds | array Condition array. See $conds in DatabaseBase::select() for the details of the format of condition arrays. May be "*" to copy the whole table. |
$fname | string The function name of the caller, from __METHOD__ |
$insertOptions | array Options for the INSERT part of the query, see DatabaseBase::insert() for details. |
$selectOptions | array Options for the SELECT part of the query, see DatabaseBase::select() for details. |
Reimplemented in DatabasePostgres, DatabaseOracle, and DatabaseMssql.
Definition at line 2553 of file Database.php.
DatabaseBase::installErrorHandler | ( | ) | [protected] |
Definition at line 699 of file Database.php.
Referenced by DatabaseMysql\open(), and DatabasePostgres\open().
Is a connection to the database open?
Reimplemented in DatabaseIbm_db2.
Definition at line 518 of file Database.php.
DatabaseBase::isQuotedIdentifier | ( | $ | name | ) |
Returns if the given identifier looks quoted or not according to the database convention for quoting identifiers .
$name | string |
Reimplemented in DatabaseOracle, DatabaseMssql, and DatabaseMysql.
Definition at line 2228 of file Database.php.
DatabaseBase::isWriteQuery | ( | $ | sql | ) |
Determine whether a query writes to the DB.
Should return true if unsure.
$sql | string |
Reimplemented in DatabaseSqlite.
Definition at line 789 of file Database.php.
Return the last query that went through DatabaseBase::query()
Definition at line 490 of file Database.php.
Referenced by MockDatabaseSqlite\query().
DatabaseBase::limitResult | ( | $ | sql, |
$ | limit, | ||
$ | offset = false |
||
) |
Construct a LIMIT query with optional offset.
This is used for query pages. The SQL should be adjusted so that only the first $limit rows are returned. If $offset is provided as well, then the first $offset rows should be discarded, and the next $limit rows should be returned. If the result of the query is not ordered, then the rows to be returned are theoretically arbitrary.
$sql is expected to be a SELECT, if that makes a difference.
The version provided by default works in MySQL and SQLite. It will very likely need to be overridden for most other DBMSes.
$sql | String SQL query we will append the limit too |
$limit | Integer the SQL limit |
$offset | Integer|bool the SQL offset (default false) |
Reimplemented in DatabasePostgres, DatabaseIbm_db2, DatabaseOracle, and DatabaseMssql.
Definition at line 2610 of file Database.php.
DatabaseBase::listTables | ( | $ | prefix = null , |
$ | fname = 'DatabaseBase::listTables' |
||
) |
List all tables on the database.
$prefix | string Only show tables with this prefix, e.g. mw_ |
$fname | String: calling function name |
Reimplemented in DatabasePostgres, DatabaseMysql, DatabaseSqlite, and DatabaseOracle.
Definition at line 2983 of file Database.php.
DatabaseBase::lock | ( | $ | lockName, |
$ | method, | ||
$ | timeout = 5 |
||
) |
Acquire a named lock.
Abstracted from Filestore::lock() so child classes can implement for their own needs.
$lockName | String: name of lock to aquire |
$method | String: name of method calling us |
$timeout | Integer: timeout |
Reimplemented in DatabaseMysql.
Definition at line 3393 of file Database.php.
DatabaseBase::lockIsFree | ( | $ | lockName, |
$ | method | ||
) |
Check to see if a named lock is available.
This is non-blocking.
$lockName | String: name of lock to poll |
$method | String: name of method calling us |
Reimplemented in DatabaseMysql.
Definition at line 3378 of file Database.php.
DatabaseBase::lockTables | ( | $ | read, |
$ | write, | ||
$ | method, | ||
$ | lowPriority = true |
||
) |
Lock specific tables.
$read | Array of tables to lock for read access |
$write | Array of tables to lock for write access |
$method | String name of caller |
$lowPriority | bool Whether to indicate writes to be LOW PRIORITY |
Reimplemented in DatabaseMysql.
Definition at line 3421 of file Database.php.
A string to insert into queries to show that they're low-priority, like MySQL's LOW_PRIORITY.
If no such feature exists, return an empty string and nothing bad should happen.
Reimplemented in DatabaseMysql.
Definition at line 2498 of file Database.php.
DatabaseBase::makeInsertOptions | ( | $ | options | ) | [protected] |
Helper for DatabaseBase::insert().
$options | array |
Reimplemented in DatabaseSqlite.
Definition at line 1595 of file Database.php.
DatabaseBase::makeList | ( | $ | a, |
$ | mode = LIST_COMMA |
||
) |
Makes an encoded list of strings from an array.
$a | Array containing the data |
$mode | int Constant
|
Reimplemented in DatabaseIbm_db2.
Definition at line 1746 of file Database.php.
Referenced by DatabaseMysql\deleteJoin(), DatabasePostgres\insert(), DatabasePostgres\insertSelect(), and DatabaseMssql\tableNamesWithUseIndexOrJOIN().
DatabaseBase::makeSelectOptions | ( | $ | options | ) |
Returns an optional USE INDEX clause to go after the table, and a string to go at the end of the query.
$options | Array: associative array of options to be turned into an SQL query, valid keys are listed in the function. |
Reimplemented in DatabasePostgres, DatabaseIbm_db2, DatabaseOracle, DatabaseMssql, and DatabaseSqlite.
Definition at line 1102 of file Database.php.
DatabaseBase::makeUpdateOptions | ( | $ | options | ) | [protected] |
Make UPDATE options for the DatabaseBase::update function.
$options | Array: The options passed to DatabaseBase::update |
Reimplemented in DatabaseSqlite.
Definition at line 1680 of file Database.php.
Referenced by DatabaseIbm_db2\update().
DatabaseBase::makeWhereFrom2d | ( | $ | data, |
$ | baseKey, | ||
$ | subKey | ||
) |
Build a partial where clause from a 2-d array such as used for LinkBatch.
The keys on each level may be either integers or strings.
$data | Array: organized as 2-d array(baseKeyVal => array(subKeyVal => [ignored], ...), ...) |
$baseKey | String: field name to match the base-level keys to (eg 'pl_namespace') |
$subKey | String: field name to match the sub-level keys to (eg 'pl_title') |
Definition at line 1811 of file Database.php.
DatabaseBase::masterPosWait | ( | DBMasterPos $ | pos, |
$ | timeout | ||
) |
Wait for the slave to catch up to a given master position.
$pos | DBMasterPos object |
$timeout | Integer: the maximum number of seconds to wait for synchronisation |
Reimplemented in DatabaseMysql.
Definition at line 2792 of file Database.php.
Return the maximum number of items allowed in a list, or 0 for unlimited.
Definition at line 3079 of file Database.php.
DatabaseBase::nativeReplace | ( | $ | table, |
$ | rows, | ||
$ | fname | ||
) | [protected] |
REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE statement.
$table | string Table name |
$rows | array Rows to insert |
$fname | string Caller function name |
Definition at line 2402 of file Database.php.
Referenced by DatabaseMysql\replace().
DatabaseBase::nextSequenceValue | ( | $ | seqName | ) |
Returns an appropriately quoted sequence value for inserting a new row.
MySQL has autoincrement fields, so this is just NULL. But the PostgreSQL subclass will return an integer, and save the value for insertId()
Any implementation of this function should *not* involve reusing sequence numbers created for rolled-back transactions. See http://bugs.mysql.com/bug.php?id=30767 for details.
$seqName | string |
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, and DatabaseMssql.
Definition at line 2305 of file Database.php.
DatabaseBase::onTransactionIdle | ( | Closure $ | callback | ) | [final] |
Run an anonymous function as soon as there is no transaction pending.
If there is a transaction and it is rolled back, then the callback is cancelled. Callbacks must commit any transactions that they begin.
This is useful for updates to different systems or separate transactions are needed.
Closure | $callback |
Definition at line 2859 of file Database.php.
DatabaseBase::patchPath | ( | $ | patch | ) |
Get the full path of a patch file.
Originally based on archive() from updaters.inc. Keep in mind this always returns a patch, as it fails back to MySQL if no DB-specific patch can be found
$patch | String The name of the patch, like patch-something.sql |
Definition at line 3167 of file Database.php.
Ping the server and try to reconnect if it there is no connection.
Reimplemented in DatabaseIbm_db2, and DatabaseMysql.
Definition at line 3056 of file Database.php.
DatabaseBase::prepare | ( | $ | sql, |
$ | func = 'DatabaseBase::prepare' |
||
) | [protected] |
Intended to be compatible with the PEAR::DB wrapper functions.
http://pear.php.net/manual/en/package.database.db.intro-execute.php
? = scalar value, quoted as necessary ! = raw SQL bit (a function for instance) & = filename; reads the file and inserts as a blob (we don't use this though...)
$sql | string |
$func | string |
Reimplemented in DatabaseIbm_db2.
Definition at line 966 of file Database.php.
DatabaseBase::query | ( | $ | sql, |
$ | fname = '' , |
||
$ | tempIgnore = false |
||
) |
Run an SQL query and return the result.
Normally throws a DBQueryError on failure. If errors are ignored, returns false instead.
In new code, the query wrappers select(), insert(), update(), delete(), etc. should be used where possible, since they give much better DBMS independence and automatically quote or validate user input in a variety of contexts. This function is generally only useful for queries which are explicitly DBMS-dependent and are unsupported by the query wrappers, such as CREATE TABLE.
However, the query wrappers themselves should call this function.
$sql | String: SQL query |
$fname | String: Name of the calling function, for profiling/SHOW PROCESSLIST comment (you can use __METHOD__ or add some extra info) |
$tempIgnore | Boolean: Whether to avoid throwing an exception on errors... maybe best to catch the exception instead? |
DBQueryError | Thrown when the database returns an error of any kind |
Reimplemented in MockDatabaseSqlite.
Definition at line 815 of file Database.php.
Referenced by DatabasePostgres\constraintExists(), DatabasePostgres\currentSequenceValue(), DatabaseIbm_db2\delete(), DatabaseMysql\deleteJoin(), DatabaseMysql\dropTable(), DatabaseMysql\duplicateTableStructure(), DatabasePostgres\duplicateTableStructure(), DatabaseMysql\fieldInfo(), DatabasePostgres\getCurrentSchema(), DatabaseMysql\getLagFromProcesslist(), DatabaseMysql\getLagFromSlaveStatus(), DatabaseMysql\getMasterPos(), DatabaseMysql\getMysqlStatus(), DatabasePostgres\getSchemas(), DatabasePostgres\getSearchPath(), DatabaseMysql\getSlavePos(), DatabasePostgres\indexAttributes(), DatabaseMssql\indexInfo(), DatabaseMysql\indexInfo(), DatabasePostgres\indexInfo(), DatabaseIbm_db2\indexInfo(), DatabasePostgres\indexUnique(), DatabaseIbm_db2\indexUnique(), DatabasePostgres\insert(), DatabasePostgres\insertSelect(), DatabaseMysql\listTables(), DatabasePostgres\listTables(), DatabaseMysql\lock(), DatabaseMysql\lockIsFree(), DatabaseMysql\lockTables(), DatabasePostgres\nextSequenceValue(), DatabaseMysql\open(), DatabasePostgres\open(), DatabasePostgres\queryIgnore(), DatabasePostgres\relationExists(), DatabaseMssql\select(), DatabaseMssql\selectDB(), DatabaseMysql\setBigSelects(), DatabasePostgres\setSearchPath(), DatabaseMysql\setSessionOptions(), DatabaseIbm_db2\tableExists(), DatabaseMssql\textFieldSize(), DatabasePostgres\textFieldSize(), DatabaseIbm_db2\textFieldSize(), DatabasePostgres\triggerExists(), DatabaseMysql\unlock(), and DatabaseMysql\unlockTables().
Returns true if this database uses timestamps rather than integers.
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, and DatabaseMssql.
Definition at line 444 of file Database.php.
DatabaseBase::replace | ( | $ | table, |
$ | uniqueIndexes, | ||
$ | rows, | ||
$ | fname = 'DatabaseBase::replace' |
||
) |
REPLACE query wrapper.
REPLACE is a very handy MySQL extension, which functions like an INSERT except that when there is a duplicate key error, the old row is deleted and the new row is inserted in its place.
We simulate this with standard SQL with a DELETE followed by INSERT. To perform the delete, we need to know what the unique indexes are so that we know how to find the conflicting rows.
It may be more efficient to leave off unique indexes which are unlikely to collide. However if you do this, you run the risk of encountering errors which wouldn't have occurred in MySQL.
$table | String: The table to replace the row(s) in. |
$rows | array Can be either a single row to insert, or multiple rows, in the same format as for DatabaseBase::insert() |
$uniqueIndexes | array is an array of indexes. Each element may be either a field name or an array of field names |
$fname | String: Calling function name (use __METHOD__) for logs/profiling |
Reimplemented in DatabaseSqlite, and DatabaseMysql.
Definition at line 2345 of file Database.php.
DatabaseBase::replaceSchemaVars | ( | $ | ins | ) | [protected] |
Database independent variable replacement.
Replaces a set of variables in an SQL statement with their contents as given by $this->getSchemaVars().
Supports '{$var}' `{$var}` and / *$var* / (without the spaces) style variables.
$ins | String: SQL statement to replace variables in |
Definition at line 3288 of file Database.php.
DatabaseBase::replaceVars | ( | $ | ins | ) | [protected] |
Replace variables in sourced SQL.
$ins | string |
Reimplemented in DatabasePostgres, DatabaseSqlite, and MockDatabaseSqlite.
Definition at line 3308 of file Database.php.
DatabaseBase::reportConnectionError | ( | $ | error = 'Unknown error' | ) |
$error | String: fallback error message, used if none is given by DB |
Definition at line 763 of file Database.php.
Referenced by DatabaseMysql\open().
DatabaseBase::reportQueryError | ( | $ | error, |
$ | errno, | ||
$ | sql, | ||
$ | fname, | ||
$ | tempIgnore = false |
||
) |
Report a query error.
Log the error, and if neither the object ignore flag nor the $tempIgnore flag is set, throw a DBQueryError.
$error | String |
$errno | Integer |
$sql | String |
$fname | String |
$tempIgnore | Boolean |
Reimplemented in DatabaseOracle, and DatabasePostgres.
Definition at line 936 of file Database.php.
DatabaseBase::restoreErrorHandler | ( | ) | [protected] |
Definition at line 708 of file Database.php.
Referenced by DatabaseMysql\open(), and DatabasePostgres\open().
DatabaseBase::resultObject | ( | $ | result | ) |
Take the result from a query, and wrap it in a ResultWrapper if necessary.
Boolean values are passed through as is, to indicate success of write queries or failure.
Once upon a time, DatabaseBase::query() returned a bare MySQL result resource, and it was necessary to call this function to convert it to a wrapper. Nowadays, raw database objects are never exposed to external callers, so this is unnecessary in external code. For compatibility with old code, ResultWrapper objects are passed through unaltered.
$result | bool|ResultWrapper |
Definition at line 3038 of file Database.php.
DatabaseBase::rollback | ( | $ | fname = 'DatabaseBase::rollback' | ) | [final] |
Rollback a transaction.
No-op on non-transactional databases.
$fname | string |
Definition at line 2940 of file Database.php.
Referenced by DatabasePostgres\reportQueryError().
DatabaseBase::runOnTransactionIdleCallbacks | ( | ) | [protected] |
Actually run the "on transaction idle" callbacks.
Definition at line 2870 of file Database.php.
Returns true if this database can do a native search on IP columns e.g.
this works as expected: .. WHERE rc_ip = '127.42.12.102/32';
Reimplemented in DatabaseIbm_db2, DatabasePostgres, and DatabaseOracle.
Definition at line 473 of file Database.php.
DatabaseBase::select | ( | $ | table, |
$ | vars, | ||
$ | conds = '' , |
||
$ | fname = 'DatabaseBase::select' , |
||
$ | options = array() , |
||
$ | join_conds = array() |
||
) |
Execute a SELECT query constructed using the various parameters provided.
See below for full details of the parameters.
$table | String|Array Table name |
$vars | String|Array Field names |
$conds | String|Array Conditions |
$fname | String Caller function name |
$options | Array Query options |
$join_conds | Array Join conditions |
$table | string|array |
May be either an array of table names, or a single string holding a table name. If an array is given, table aliases can be specified, for example:
array( 'a' => 'user' )
This includes the user table in the query, with the alias "a" available for use in field names (e.g. a.user_name).
All of the table names given here are automatically run through DatabaseBase::tableName(), which causes the table prefix (if any) to be added, and various other table name mappings to be performed.
$vars | string|array |
May be either a field name or an array of field names. The field names can be complete fragments of SQL, for direct inclusion into the SELECT query. If an array is given, field aliases can be specified, for example:
array( 'maxrev' => 'MAX(rev_id)' )
This includes an expression with the alias "maxrev" in the query.
If an expression is given, care must be taken to ensure that it is DBMS-independent.
$conds | string|array |
May be either a string containing a single condition, or an array of conditions. If an array is given, the conditions constructed from each element are combined with AND.
Array elements may take one of two forms:
Note that expressions are often DBMS-dependent in their syntax. DBMS-independent wrappers are provided for constructing several types of expression commonly used in condition queries. See:
$options | string|array |
Optional: Array of query options. Boolean options are specified by including them in the array as a string value with a numeric key, for example:
array( 'FOR UPDATE' )
The supported options are:
And also the following boolean MySQL extensions, see the MySQL manual for documentation:
$join_conds | string|array |
Optional associative array of table-specific join conditions. In the most common case, this is unnecessary, since the join condition can be in $conds. However, it is useful for doing a LEFT JOIN.
The key of the array contains the table name or alias. The value is an array with two elements, numbered 0 and 1. The first gives the type of join, the second is an SQL fragment giving the join condition for that table. For example:
array( 'page' => array('LEFT JOIN','page_latest=rev_id') )
Reimplemented in DatabaseIbm_db2, and DatabaseMssql.
Definition at line 1334 of file Database.php.
Referenced by DatabaseMysql\estimateRowCount(), DatabasePostgres\estimateRowCount(), and RefreshImageMetadata\execute().
DatabaseBase::selectDB | ( | $ | db | ) |
Change the current database.
$db |
Reimplemented in DatabaseOracle, DatabaseMssql, DatabaseMysql, and DatabasePostgres.
Definition at line 1886 of file Database.php.
DatabaseBase::selectField | ( | $ | table, |
$ | var, | ||
$ | cond = '' , |
||
$ | fname = 'DatabaseBase::selectField' , |
||
$ | options = array() |
||
) |
A SELECT wrapper which returns a single field from a single result row.
Usually throws a DBQueryError on failure. If errors are explicitly ignored, returns false on failure.
If no result rows are returned from the query, false is returned.
$table | string|array Table name. See DatabaseBase::select() for details. |
$var | string The field name to select. This must be a valid SQL fragment: do not use unvalidated user input. |
$cond | string|array The condition array. See DatabaseBase::select() for details. |
$fname | string The function name of the caller. |
$options | string|array The query options. See DatabaseBase::select() for details. |
Definition at line 1069 of file Database.php.
Referenced by DatabasePostgres\roleExists(), DatabasePostgres\ruleExists(), DatabasePostgres\schemaExists(), and DatabaseMysql\setBigSelects().
DatabaseBase::selectRow | ( | $ | table, |
$ | vars, | ||
$ | conds, | ||
$ | fname = 'DatabaseBase::selectRow' , |
||
$ | options = array() , |
||
$ | join_conds = array() |
||
) |
Single row SELECT wrapper.
Equivalent to DatabaseBase::select(), except that a single row object is returned. If the query returns no rows, false is returned.
$table | string|array Table name |
$vars | string|array Field names |
$conds | array Conditions |
$fname | string Caller function name |
$options | string|array Query options |
$join_conds | array|string Join conditions |
Reimplemented in DatabaseOracle.
Definition at line 1424 of file Database.php.
DatabaseBase::selectSQLText | ( | $ | table, |
$ | vars, | ||
$ | conds = '' , |
||
$ | fname = 'DatabaseBase::select' , |
||
$ | options = array() , |
||
$ | join_conds = array() |
||
) |
The equivalent of DatabaseBase::select() except that the constructed SQL is returned, instead of being immediately executed.
This can be useful for doing UNION queries, where the SQL text of each query is needed. In general, however, callers outside of Database classes should just use select().
$table | string|array Table name |
$vars | string|array Field names |
$conds | string|array Conditions |
$fname | string Caller function name |
$options | string|array Query options |
$join_conds | string|array Join conditions |
Reimplemented in DatabaseMssql.
Definition at line 1357 of file Database.php.
Referenced by DatabaseIbm_db2\select().
DatabaseBase::setBigSelects | ( | $ | value = true | ) |
Allow or deny "big selects" for this session only.
This is done by setting the sql_big_selects session variable.
This is a MySQL-specific feature.
$value | Mixed: true for allow, false for deny, or "default" to restore the initial value |
Reimplemented in DatabaseMysql.
Definition at line 3509 of file Database.php.
DatabaseBase::setFakeMaster | ( | $ | enabled = true | ) |
Make this connection a fake master.
$enabled | bool |
Reimplemented in DatabasePostgres, and DatabaseOracle.
Definition at line 407 of file Database.php.
DatabaseBase::setFakeSlaveLag | ( | $ | lag | ) |
Set lag time in seconds for a fake slave.
$lag | int |
Definition at line 398 of file Database.php.
DatabaseBase::setFlag | ( | $ | flag | ) |
Set a flag for this connection.
$flag | Integer: DBO_* constants from Defines.php:
|
Definition at line 534 of file Database.php.
DatabaseBase::setLBInfo | ( | $ | name, |
$ | value = null |
||
) |
Set the LB info array, or a member of it.
If called with one parameter, the LB info array is set to that parameter. If it is called with two parameters, the member with the given name is set to the given value.
$name | |
$value |
Definition at line 385 of file Database.php.
DatabaseBase::setSchemaVars | ( | $ | vars | ) |
Set variables to be used in sourceFile/sourceStream, in preference to the ones in $GLOBALS.
If an array is set here, $GLOBALS will not be used at all. If it's set to false, $GLOBALS will be used.
$vars | bool|array mapping variable name to value. |
Definition at line 3185 of file Database.php.
DatabaseBase::setSessionOptions | ( | array $ | options | ) |
Override database's default behavior.
$options include: 'connTimeout' : Set the connection timeout value in seconds. May be useful for very long batch queries such as full-wiki dumps, where a single query reads out over hours or days.
$options | Array |
Reimplemented in DatabaseMysql.
Definition at line 3116 of file Database.php.
DatabaseBase::sourceFile | ( | $ | filename, |
$ | lineCallback = false , |
||
$ | resultCallback = false , |
||
$ | fname = false |
||
) |
Read and execute SQL commands from a file.
Returns true on success, error string or exception on failure (depending on object's error ignore settings).
$filename | String: File name to open |
$lineCallback | Callback: Optional function called before reading each line |
$resultCallback | Callback: Optional function called for each MySQL result |
$fname | String: Calling function name or false if name should be generated dynamically using $filename |
Definition at line 3131 of file Database.php.
DatabaseBase::sourceStream | ( | $ | fp, |
$ | lineCallback = false , |
||
$ | resultCallback = false , |
||
$ | fname = 'DatabaseBase::sourceStream' , |
||
$ | inputCallback = false |
||
) |
Read and execute commands from an open file handle.
Returns true on success, error string or exception on failure (depending on object's error ignore settings).
$fp | Resource: File handle |
$lineCallback | Callback: Optional function called before reading each line |
$resultCallback | Callback: Optional function called for each MySQL result |
$fname | String: Calling function name |
$inputCallback | Callback: Optional function called for each complete line (ended with ;) sent |
Reimplemented in DatabaseOracle.
Definition at line 3202 of file Database.php.
DatabaseBase::streamStatementEnd | ( | &$ | sql, |
&$ | newLine | ||
) |
Called by sourceStream() to check if we've reached a statement end.
$sql | String SQL assembled so far |
$newLine | String New line about to be added to $sql |
Reimplemented in DatabasePostgres, and DatabaseMysql.
Definition at line 3260 of file Database.php.
Returns true if this database is strict about what can be put into an IP field.
Specifically, it uses a NULL value instead of an empty string.
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, and DatabaseMssql.
Definition at line 435 of file Database.php.
DatabaseBase::strreplace | ( | $ | orig, |
$ | old, | ||
$ | new | ||
) |
Returns a comand for str_replace function in SQL query.
Uses REPLACE() in MySQL
$orig | String: column to modify |
$old | String: column to seek |
$new | String: column to replace with |
Definition at line 2667 of file Database.php.
DatabaseBase::tableExists | ( | $ | table, |
$ | fname = __METHOD__ |
||
) |
Query whether a given table exists.
$table | string |
$fname | string |
Reimplemented in DatabaseOracle, and DatabaseIbm_db2.
Definition at line 1548 of file Database.php.
Referenced by DatabaseMysql\dropTable().
DatabaseBase::tableName | ( | $ | name, |
$ | format = 'quoted' |
||
) |
Format a table name ready for use in constructing an SQL query.
This does two important things: it quotes the table names to clean them up, and it adds a table prefix if only given a table name with no quotes.
All functions of this object which require a table name call this function themselves. Pass the canonical name to such functions. This is only needed when calling query() directly.
$name | String: database table name |
$format | String One of: quoted - Automatically pass the table name through addIdentifierQuotes() so that it can be used in a query. raw - Do not add identifier quotes to the table name |
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, and DatabaseSqlite.
Definition at line 1925 of file Database.php.
Referenced by DatabaseMysql\deleteJoin(), DatabaseMysql\dropTable(), DatabaseMssql\fieldExists(), DatabaseMysql\fieldInfo(), DatabaseMssql\fieldInfo(), DatabaseMysql\indexInfo(), DatabaseMssql\insert(), DatabaseMysql\lockTables(), DatabaseMssql\tableNamesWithUseIndexOrJOIN(), and DatabaseMssql\textFieldSize().
DatabaseBase::tableNameCallback | ( | $ | matches | ) | [protected] |
Table name callback.
$matches | array |
Definition at line 3355 of file Database.php.
Fetch a number of table names into an array This is handy when you need to construct SQL for joins.
Example: extract($dbr->tableNames('user','watchlist')); $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
Definition at line 2004 of file Database.php.
Fetch a number of table names into an zero-indexed numerical array This is handy when you need to construct SQL for joins.
Example: list( $user, $watchlist ) = $dbr->tableNamesN('user','watchlist'); $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
Definition at line 2026 of file Database.php.
DatabaseBase::tableNamesWithAlias | ( | $ | tables | ) |
Gets an array of aliased table names.
$tables | array( [alias] => table ) |
Definition at line 2059 of file Database.php.
DatabaseBase::tableNamesWithUseIndexOrJOIN | ( | $ | tables, |
$ | use_index = array() , |
||
$ | join_conds = array() |
||
) | [protected] |
Get the aliased table name clause for a FROM clause which might have a JOIN and/or USE INDEX clause.
$tables | array ( [alias] => table ) |
$use_index | array Same as for select() |
$join_conds | array Same as for select() |
Reimplemented in DatabaseMssql.
Definition at line 2112 of file Database.php.
DatabaseBase::tableNameWithAlias | ( | $ | name, |
$ | alias = false |
||
) |
Get an aliased table name e.g.
tableName AS newTableName
$name | string Table name, see tableName() |
$alias | string|bool Alias (optional) |
Definition at line 2045 of file Database.php.
DatabaseBase::tablePrefix | ( | $ | prefix = null | ) |
Get/set the table prefix.
$prefix | string The table prefix to set, or omitted to leave it unchanged. |
Definition at line 352 of file Database.php.
Referenced by DatabaseSqliteStandalone\__construct().
DatabaseBase::textFieldSize | ( | $ | table, |
$ | field | ||
) |
Returns the size of a text field, or -1 for "unlimited".
$table | string |
$field | string |
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseOracle, DatabaseSqlite, and DatabaseMssql.
Definition at line 2473 of file Database.php.
DatabaseBase::timestamp | ( | $ | ts = 0 | ) |
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting into timestamp fields in this DBMS.
The result is unquoted, and needs to be passed through addQuotes() before it can be included in raw SQL.
$ts | string|int |
Reimplemented in DatabasePostgres, DatabaseIbm_db2, DatabaseOracle, and DatabaseMssql.
Definition at line 2998 of file Database.php.
DatabaseBase::timestampOrNull | ( | $ | ts = null | ) |
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting into timestamp fields in this DBMS.
If NULL is input, it is passed through, allowing NULL values to be inserted into timestamp fields.
The result is unquoted, and needs to be passed through addQuotes() before it can be included in raw SQL.
$ts | string|int |
Definition at line 3015 of file Database.php.
DatabaseBase::trxLevel | ( | $ | level = null | ) |
Gets or sets the current transaction level.
Historically, transactions were allowed to be "nested". This is no longer supported, so this function really only returns a boolean.
$level | int An integer (0 or 1), or omitted to leave it unchanged. |
Definition at line 334 of file Database.php.
DatabaseBase::unionQueries | ( | $ | sqls, |
$ | all | ||
) |
Construct a UNION query This is used for providing overload point for other DB abstractions not compatible with the MySQL syntax.
$sqls | Array: SQL statements to combine |
$all | Boolean: use UNION ALL |
Reimplemented in DatabaseOracle, and DatabaseSqlite.
Definition at line 2636 of file Database.php.
Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries within the UNION construct.
Reimplemented in DatabaseSqlite, and DatabaseMssql.
Definition at line 2624 of file Database.php.
DatabaseBase::unlock | ( | $ | lockName, |
$ | method | ||
) |
Release a lock.
$lockName | String: Name of lock to release |
$method | String: Name of method calling us |
Reimplemented in DatabaseMysql.
Definition at line 3407 of file Database.php.
DatabaseBase::unlockTables | ( | $ | method | ) |
Unlock specific tables.
$method | String the caller |
Reimplemented in DatabaseMysql.
Definition at line 3432 of file Database.php.
DatabaseBase::update | ( | $ | table, |
$ | values, | ||
$ | conds, | ||
$ | fname = 'DatabaseBase::update' , |
||
$ | options = array() |
||
) |
UPDATE wrapper.
Takes a condition array and a SET array.
$table | String name of the table to UPDATE. This will be passed through DatabaseBase::tableName(). |
$values | Array: An array of values to SET. For each array element, the key gives the field name, and the value gives the data to set that field to. The data will be quoted by DatabaseBase::addQuotes(). |
$conds | Array: An array of conditions (WHERE). See DatabaseBase::select() for the details of the format of condition arrays. Use '*' to update all rows. |
$fname | String: The function name of the caller (from __METHOD__), for logging and profiling. |
$options | Array: An array of UPDATE options, can be:
|
Reimplemented in DatabaseOracle, and DatabaseIbm_db2.
Definition at line 1721 of file Database.php.
DatabaseBase::useIndexClause | ( | $ | index | ) |
USE INDEX clause.
Unlikely to be useful for anything but MySQL. This is only needed because a) MySQL must be as efficient as possible due to its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about which index to pick. Anyway, other databases might have different indexes on a given table. So don't bother overriding this unless you're MySQL.
$index |
Reimplemented in DatabaseMysql.
Definition at line 2319 of file Database.php.
Referenced by DatabaseMssql\tableNamesWithUseIndexOrJOIN().
Determines if the last failure was due to a deadlock STUB.
Reimplemented in DatabaseIbm_db2, DatabasePostgres, DatabaseMysql, DatabaseOracle, and DatabaseSqlite.
Definition at line 2687 of file Database.php.
Determines if the last query error was something that should be dealt with by pinging the connection and reissuing the query.
STUB
Reimplemented in DatabaseMysql, and DatabaseSqlite.
Definition at line 2708 of file Database.php.
Determines if the last failure was due to a lock timeout STUB.
Reimplemented in DatabaseMysql.
Definition at line 2697 of file Database.php.
Determines if the last failure was due to the database being read-only.
STUB
Reimplemented in DatabaseMysql, and DatabaseSqlite.
Definition at line 2718 of file Database.php.
Returns true if there is a transaction open with possible write queries or transaction idle callbacks waiting on it to finish.
Definition at line 510 of file Database.php.
DatabaseBase::$delimiter = ';' [protected] |
Definition at line 249 of file Database.php.
DatabaseBase::$htmlErrors [protected] |
Definition at line 247 of file Database.php.
DatabaseBase::$mConn = null [protected] |
Reimplemented in DatabaseSqlite.
Definition at line 228 of file Database.php.
DatabaseBase::$mDBname |
Definition at line 226 of file Database.php.
DatabaseBase::$mDefaultBigSelects = null [protected] |
Definition at line 242 of file Database.php.
DatabaseBase::$mDoneWrites = false [protected] |
Definition at line 223 of file Database.php.
DatabaseBase::$mErrorCount = 0 [protected] |
Definition at line 239 of file Database.php.
DatabaseBase::$mFakeMaster = false |
Definition at line 241 of file Database.php.
DatabaseBase::$mFakeSlaveLag = null [protected] |
Definition at line 241 of file Database.php.
DatabaseBase::$mFlags [protected] |
Definition at line 237 of file Database.php.
DatabaseBase::$mLastQuery = '' [protected] |
Definition at line 222 of file Database.php.
DatabaseBase::$mLBInfo = array() [protected] |
Definition at line 240 of file Database.php.
DatabaseBase::$mOpened = false [protected] |
Definition at line 229 of file Database.php.
DatabaseBase::$mPassword |
Definition at line 226 of file Database.php.
DatabaseBase::$mPHPError = false [protected] |
Definition at line 224 of file Database.php.
DatabaseBase::$mSchemaVars = false [protected] |
Definition at line 243 of file Database.php.
DatabaseBase::$mServer [protected] |
Definition at line 226 of file Database.php.
DatabaseBase::$mTablePrefix [protected] |
Definition at line 236 of file Database.php.
array DatabaseBase::$mTrxIdleCallbacks = array() [protected] |
Definition at line 234 of file Database.php.
DatabaseBase::$mTrxLevel = 0 [protected] |
Definition at line 238 of file Database.php.
DatabaseBase::$mUser |
Definition at line 226 of file Database.php.
DatabaseBase::$preparedArgs [protected] |
Definition at line 245 of file Database.php.