MediaWiki
master
|
Database abstraction object. More...
Public Member Functions | |
__construct (array $params) | |
Constructor. More... | |
__destruct () | |
Run a few simple sanity checks. More... | |
__sleep () | |
Called by serialize. More... | |
__toString () | |
addIdentifierQuotes ($s) | |
Quotes an identifier using backticks or "double quotes" depending on the database type. More... | |
addQuotes ($s) | |
Adds quotes and backslashes. More... | |
aggregateValue ($valuedata, $valuename= 'value') | |
Return aggregated value alias. More... | |
anyChar () | |
Returns a token for buildLike() that denotes a '_' to be used in a LIKE query. More... | |
anyString () | |
Returns a token for buildLike() that denotes a '' to be used in a LIKE query. More... | |
begin ($fname=__METHOD__) | |
Begin a transaction. More... | |
bitAnd ($fieldLeft, $fieldRight) | |
bitNot ($field) | |
bitOr ($fieldLeft, $fieldRight) | |
bufferResults ($buffer=null) | |
Turns buffering of SQL result sets on (true) or off (false). More... | |
buildConcat ($stringList) | |
Build a concatenation list to feed into a SQL query. More... | |
buildGroupConcatField ($delim, $table, $field, $conds= '', $join_conds=[]) | |
Build a GROUP_CONCAT or equivalent statement for a query. More... | |
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(). More... | |
cascadingDeletes () | |
Returns true if this database supports (and uses) cascading deletes. More... | |
cleanupTriggers () | |
Returns true if this database supports (and uses) triggers (e.g. More... | |
clearFlag ($flag) | |
Clear a flag for this connection. More... | |
clearViewsCache () | |
Reset the views process cache set by listViews() More... | |
close () | |
Closes a database connection. More... | |
commit ($fname=__METHOD__, $flush= '') | |
Commits a transaction previously started using begin(). More... | |
conditional ($cond, $trueVal, $falseVal) | |
Returns an SQL expression for a simple conditional. More... | |
connectionErrorHandler ($errno, $errstr) | |
dbSchema ($schema=null) | |
Get/set the db schema. More... | |
deadlockLoop () | |
Perform a deadlock-prone transaction. More... | |
debug ($debug=null) | |
Boolean, controls output of large amounts of debug information. More... | |
decodeBlob ($b) | |
Some DBMSs return a special placeholder object representing blob fields in result objects. More... | |
decodeExpiry ($expiry, $format=TS_MW) | |
Decode an expiry time into a DBMS independent format. More... | |
delete ($table, $conds, $fname=__METHOD__) | |
DELETE query wrapper. More... | |
deleteJoin ($delTable, $joinTable, $delVar, $joinVar, $conds, $fname=__METHOD__) | |
DELETE where the condition is a join. More... | |
doAtomicSection ($fname, callable $callback) | |
Run a callback to do an atomic set of updates for this database. More... | |
doneWrites () | |
Returns true if the connection may have been used for write queries. More... | |
dropTable ($tableName, $fName=__METHOD__) | |
Delete a table. More... | |
duplicateTableStructure ($oldName, $newName, $temporary=false, $fname=__METHOD__) | |
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. More... | |
encodeBlob ($b) | |
Some DBMSs have a special format for inserting into blob fields, they don't allow simple quoted strings to be inserted. More... | |
encodeExpiry ($expiry) | |
Encode an expiry time into the DBMS dependent format. More... | |
endAtomic ($fname=__METHOD__) | |
Ends an atomic section of SQL statements. More... | |
estimateRowCount ($table, $vars= '*', $conds= '', $fname=__METHOD__, $options=[]) | |
Estimate the number of rows in dataset. More... | |
execute ($prepared, $args=null) | |
Execute a prepared query with the various arguments. More... | |
fieldExists ($table, $field, $fname=__METHOD__) | |
Determines whether a field exists in a table. More... | |
fieldNamesWithAlias ($fields) | |
Gets an array of aliased field names. More... | |
fieldNameWithAlias ($name, $alias=false) | |
Get an aliased field name e.g. More... | |
fillPrepared ($preparedQuery, $args) | |
For faking prepared SQL statements on DBs that don't support it directly. More... | |
freeResult ($res) | |
Free a result object returned by query() or select(). More... | |
functionalIndexes () | |
Returns true if this database can use functional indexes. More... | |
getApproximateLagStatus () | |
Get a slave lag estimate for this server. More... | |
getDBname () | |
Get the current DB name. More... | |
getDelimiter () | |
getFlag ($flag) | |
Returns a boolean whether the flag $flag is set for this connection. More... | |
getInfinity () | |
Find out when 'infinity' is. More... | |
getLag () | |
Get slave lag. More... | |
getLazyMasterHandle () | |
getLBInfo ($name=null) | |
Get properties passed down from the server info array of the load balancer. More... | |
getMasterPos () | |
Get the position of this master. More... | |
getProperty ($name) | |
General read-only accessor. More... | |
getSchemaPath () | |
Return a path to the DBMS-specific schema file, otherwise default to tables.sql. More... | |
getScopedLockAndFlush ($lockKey, $fname, $timeout) | |
Acquire a named lock, flush any transaction, and return an RAII style unlocker object. More... | |
getSearchEngine () | |
Get search engine class. More... | |
getServer () | |
Get the server hostname or IP address. More... | |
getServerInfo () | |
A string describing the current software version, and possibly other details in a user-friendly way. More... | |
getServerUptime () | |
Determines how long the server has been up STUB. More... | |
getSessionLagStatus () | |
Get the slave lag when the current transaction started or a general lag estimate if not transaction is active. More... | |
getSlavePos () | |
Get the replication position of this slave. More... | |
getTransactionLagStatus () | |
Get the slave lag when the current transaction started. More... | |
getUpdateKeysPath () | |
Return a path to the DBMS-specific update key file, otherwise default to update-keys.sql. More... | |
getWikiID () | |
implicitGroupby () | |
Returns true if this database does an implicit sort when doing GROUP BY. More... | |
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. More... | |
indexExists ($table, $index, $fname=__METHOD__) | |
Determines whether an index exists Usually throws a DBQueryError on failure If errors are explicitly ignored, returns NULL on failure. More... | |
indexInfo ($table, $index, $fname=__METHOD__) | |
Get information about an index into an object. More... | |
indexUnique ($table, $index) | |
Determines if a given index is unique. More... | |
insert ($table, $a, $fname=__METHOD__, $options=[]) | |
INSERT wrapper, inserts an array into a table. More... | |
insertSelect ($destTable, $srcTable, $varMap, $conds, $fname=__METHOD__, $insertOptions=[], $selectOptions=[]) | |
INSERT SELECT wrapper. More... | |
isOpen () | |
Is a connection to the database open? More... | |
isQuotedIdentifier ($name) | |
Returns if the given identifier looks quoted or not according to the database convention for quoting identifiers . More... | |
isReadOnly () | |
isView ($name) | |
Differentiates between a TABLE and a VIEW. More... | |
lastDoneWrites () | |
Returns the last time the connection may have been used for write queries. More... | |
lastQuery () | |
Return the last query that went through IDatabase::query() More... | |
limitResult ($sql, $limit, $offset=false) | |
Construct a LIMIT query with optional offset. More... | |
listTables ($prefix=null, $fname=__METHOD__) | |
List all tables on the database. More... | |
listViews ($prefix=null, $fname=__METHOD__) | |
Lists all the VIEWs in the database. More... | |
lock ($lockName, $method, $timeout=5) | |
Acquire a named lock. More... | |
lockIsFree ($lockName, $method) | |
Check to see if a named lock is available (non-blocking) More... | |
lockTables ($read, $write, $method, $lowPriority=true) | |
Lock specific tables. More... | |
lowPriorityOption () | |
A string to insert into queries to show that they're low-priority, like MySQL's LOW_PRIORITY. More... | |
makeGroupByWithHaving ($options) | |
Returns an optional GROUP BY with an optional HAVING. More... | |
makeList ($a, $mode=LIST_COMMA) | |
Makes an encoded list of strings from an array. More... | |
makeOrderBy ($options) | |
Returns an optional ORDER BY. More... | |
makeSelectOptions ($options) | |
Returns an optional USE INDEX clause to go after the table, and a string to go at the end of the query. More... | |
makeWhereFrom2d ($data, $baseKey, $subKey) | |
Build a partial where clause from a 2-d array such as used for LinkBatch. More... | |
masterPosWait (DBMasterPos $pos, $timeout) | |
Wait for the slave to catch up to a given master position. More... | |
maxListLen () | |
Return the maximum number of items allowed in a list, or 0 for unlimited. More... | |
namedLocksEnqueue () | |
Check to see if a named lock used by lock() use blocking queues. More... | |
nextSequenceValue ($seqName) | |
Returns an appropriately quoted sequence value for inserting a new row. More... | |
onTransactionIdle (callable $callback) | |
Run a callback as soon as there is no transaction pending. More... | |
onTransactionPreCommitOrIdle (callable $callback) | |
Run a callback before the current transaction commits or now if there is none. More... | |
onTransactionResolution (callable $callback) | |
Run a callback as soon as the current transaction commits or rolls back. More... | |
patchPath ($patch) | |
Get the full path of a patch file. More... | |
pendingWriteCallers () | |
Get the list of method names that did write queries for this transaction. More... | |
pendingWriteQueryDuration () | |
Get the time spend running write queries for this transaction. More... | |
ping () | |
Ping the server and try to reconnect if it there is no connection. More... | |
query ($sql, $fname=__METHOD__, $tempIgnore=false) | |
Run an SQL query and return the result. More... | |
realTimestamps () | |
Returns true if this database uses timestamps rather than integers. More... | |
replace ($table, $uniqueIndexes, $rows, $fname=__METHOD__) | |
REPLACE query wrapper. More... | |
reportConnectionError ($error= 'Unknown error') | |
reportQueryError ($error, $errno, $sql, $fname, $tempIgnore=false) | |
Report a query error. More... | |
rollback ($fname=__METHOD__, $flush= '') | |
Rollback a transaction previously started using begin(). More... | |
runOnTransactionIdleCallbacks ($trigger) | |
Actually run and consume any "on transaction idle/resolution" callbacks. More... | |
runOnTransactionPreCommitCallbacks () | |
Actually run and consume any "on transaction pre-commit" callbacks. More... | |
searchableIPs () | |
Returns true if this database can do a native search on IP columns e.g. More... | |
select ($table, $vars, $conds= '', $fname=__METHOD__, $options=[], $join_conds=[]) | |
Execute a SELECT query constructed using the various parameters provided. More... | |
selectDB ($db) | |
Change the current database. More... | |
selectField ($table, $var, $cond= '', $fname=__METHOD__, $options=[]) | |
A SELECT wrapper which returns a single field from a single result row. More... | |
selectFieldValues ($table, $var, $cond= '', $fname=__METHOD__, $options=[], $join_conds=[]) | |
selectRow ($table, $vars, $conds, $fname=__METHOD__, $options=[], $join_conds=[]) | |
Single row SELECT wrapper. More... | |
selectRowCount ($tables, $vars= '*', $conds= '', $fname=__METHOD__, $options=[], $join_conds=[]) | |
Get the number of rows in dataset. More... | |
selectSQLText ($table, $vars, $conds= '', $fname=__METHOD__, $options=[], $join_conds=[]) | |
The equivalent of IDatabase::select() except that the constructed SQL is returned, instead of being immediately executed. More... | |
serverIsReadOnly () | |
setBigSelects ($value=true) | |
Allow or deny "big selects" for this session only. More... | |
setFileHandle ($fh) | |
Set the filehandle to copy write statements to. More... | |
setFlag ($flag) | |
Set a flag for this connection. More... | |
setLazyMasterHandle (IDatabase $conn) | |
Set a lazy-connecting DB handle to the master DB (for replication status purposes) More... | |
setLBInfo ($name, $value=null) | |
Set the LB info array, or a member of it. More... | |
setPostCommitCallbackSupression ($suppress) | |
Whether to disable running of post-commit callbacks. More... | |
setSchemaVars ($vars) | |
Set variables to be used in sourceFile/sourceStream, in preference to the ones in $GLOBALS. More... | |
setSessionOptions (array $options) | |
Override database's default behavior. More... | |
setTransactionProfiler (TransactionProfiler $profiler) | |
sourceFile ($filename, $lineCallback=false, $resultCallback=false, $fname=false, $inputCallback=false) | |
Read and execute SQL commands from a file. More... | |
sourceStream ($fp, $lineCallback=false, $resultCallback=false, $fname=__METHOD__, $inputCallback=false) | |
Read and execute commands from an open file handle. More... | |
startAtomic ($fname=__METHOD__) | |
Begin an atomic section of statements. More... | |
streamStatementEnd (&$sql, &$newLine) | |
Called by sourceStream() to check if we've reached a statement end. More... | |
strencode ($s) | |
Wrapper for addslashes() More... | |
strictIPs () | |
Returns true if this database is strict about what can be put into an IP field. More... | |
strreplace ($orig, $old, $new) | |
Returns a comand for str_replace function in SQL query. More... | |
tableExists ($table, $fname=__METHOD__) | |
Query whether a given table exists. More... | |
tableName ($name, $format= 'quoted') | |
Format a table name ready for use in constructing an SQL query. More... | |
tableNames () | |
Fetch a number of table names into an array This is handy when you need to construct SQL for joins. More... | |
tableNamesN () | |
Fetch a number of table names into an zero-indexed numerical array This is handy when you need to construct SQL for joins. More... | |
tableNamesWithAlias ($tables) | |
Gets an array of aliased table names. More... | |
tableNameWithAlias ($name, $alias=false) | |
Get an aliased table name e.g. More... | |
tablePrefix ($prefix=null) | |
Get/set the table prefix. More... | |
textFieldSize ($table, $field) | |
Returns the size of a text field, or -1 for "unlimited". More... | |
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. More... | |
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. More... | |
trxLevel () | |
Gets the current transaction level. More... | |
trxTimestamp () | |
Get the UNIX timestamp of the time that the transaction was established. More... | |
unionQueries ($sqls, $all) | |
Construct a UNION query This is used for providing overload point for other DB abstractions not compatible with the MySQL syntax. More... | |
unionSupportsOrderAndLimit () | |
Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries within the UNION construct. More... | |
unlock ($lockName, $method) | |
Release a lock. More... | |
unlockTables ($method) | |
Unlock specific tables. More... | |
update ($table, $values, $conds, $fname=__METHOD__, $options=[]) | |
UPDATE wrapper. More... | |
upsert ($table, array $rows, array $uniqueIndexes, array $set, $fname=__METHOD__) | |
INSERT ON DUPLICATE KEY UPDATE wrapper, upserts an array into a table. More... | |
useIndexClause ($index) | |
USE INDEX clause. More... | |
wasConnectionError ($errno) | |
Determines if the given query error was a connection drop STUB. More... | |
wasDeadlock () | |
Determines if the last failure was due to a deadlock STUB. More... | |
wasErrorReissuable () | |
Determines if the last query error was something that should be dealt with by pinging the connection and reissuing the query. More... | |
wasLockTimeout () | |
Determines if the last failure was due to a lock timeout STUB. More... | |
wasReadOnlyError () | |
Determines if the last failure was due to the database being read-only. More... | |
writesOrCallbacksPending () | |
Returns true if there is a transaction open with possible write queries or transaction pre-commit/idle callbacks waiting on it to finish. More... | |
writesPending () | |
Public Member Functions inherited from IDatabase | |
affectedRows () | |
Get the number of rows affected by the last write query. More... | |
dataSeek ($res, $row) | |
Change the position of the cursor in a result object. More... | |
fetchObject ($res) | |
Fetch the next row from the given result object, in object form. More... | |
fetchRow ($res) | |
Fetch the next row from the given result object, in associative array form. More... | |
fieldInfo ($table, $field) | |
mysql_fetch_field() wrapper Returns false if the field doesn't exist More... | |
fieldName ($res, $n) | |
Get a field name in a result object. More... | |
getServerVersion () | |
A string describing the current software version, like from mysql_get_server_info(). More... | |
getSoftwareLink () | |
Returns a wikitext link to the DB's website, e.g., return "[http://www.mysql.com/ MySQL]"; Should at least contain plain text, if for some reason your database has no website. More... | |
getType () | |
Get the type of the DBMS, as it appears in $wgDBtype. More... | |
insertId () | |
Get the inserted value of an auto-increment row. More... | |
lastErrno () | |
Get the last error number. More... | |
lastError () | |
Get a description of the last error. More... | |
numFields ($res) | |
Get the number of fields in a result object. More... | |
numRows ($res) | |
Get the number of rows in a result object. More... | |
open ($server, $user, $password, $dbName) | |
Open a connection to the database. More... | |
selectFieldValues ($table, $var, $cond= '', $fname=__METHOD__, $options=[]) | |
A SELECT wrapper which returns a list of single field values from result rows. More... | |
Static Public Member Functions | |
static | factory ($dbType, $p=[]) |
Given a DB type, construct the name of the appropriate child class of DatabaseBase. More... | |
static | getCacheSetOptions (IDatabase $db1) |
Merge the result of getSessionLagStatus() for several DBs using the most pessimistic values to estimate the lag of any data derived from them in combination. More... | |
Public Attributes | |
$mDBname | |
$mPassword | |
$mUser | |
const | DEADLOCK_DELAY_MAX = 1500000 |
Maximum time to wait before retry. More... | |
const | DEADLOCK_DELAY_MIN = 500000 |
Minimum time to wait before retry, in microseconds. More... | |
const | DEADLOCK_TRIES = 4 |
Number of times to re-try an operation in case of deadlock. More... | |
Public Attributes inherited from IDatabase | |
const | TRIGGER_COMMIT = 2 |
const | TRIGGER_IDLE = 1 |
const | TRIGGER_ROLLBACK = 3 |
Protected Member Functions | |
assertOpen () | |
Make sure isOpen() returns true as a sanity check. More... | |
closeConnection () | |
Closes underlying database connection. More... | |
doBegin ($fname) | |
Issues the BEGIN command to the database server. More... | |
doCommit ($fname) | |
Issues the COMMIT command to the database server. More... | |
doQuery ($sql) | |
The DBMS-dependent part of query() More... | |
doRollback ($fname) | |
Issues the ROLLBACK command to the database server. More... | |
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. More... | |
freePrepared ($prepared) | |
Free a prepared query, generated by prepare(). More... | |
getDefaultSchemaVars () | |
Get schema variables to use if none have been set via setSchemaVars(). More... | |
getLogContext (array $extras=[]) | |
Create a log context to pass to wfLogDBError or other logging functions. More... | |
getReadOnlyReason () | |
getSchemaVars () | |
Get schema variables. More... | |
getTransactionProfiler () | |
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. More... | |
indexName ($index) | |
Get the name of an index in a given table. More... | |
installErrorHandler () | |
isTransactableQuery ($sql) | |
Determine whether a SQL statement is sensitive to isolation level. More... | |
isWriteQuery ($sql) | |
Determine whether a query writes to the DB. More... | |
makeInsertOptions ($options) | |
Helper for DatabaseBase::insert(). More... | |
makeUpdateOptions ($options) | |
Make UPDATE options for the DatabaseBase::update function. More... | |
makeUpdateOptionsArray ($options) | |
Make UPDATE options array for DatabaseBase::makeUpdateOptions. More... | |
nativeReplace ($table, $rows, $fname) | |
REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE statement. More... | |
prepare ($sql, $func= 'DatabaseBase::prepare') | |
Intended to be compatible with the PEAR::DB wrapper functions. More... | |
replaceVars ($ins) | |
Database independent variable replacement. More... | |
restoreErrorHandler () | |
resultObject ($result) | |
Take the result from a query, and wrap it in a ResultWrapper if necessary. More... | |
tableNamesWithUseIndexOrJOIN ($tables, $use_index=[], $join_conds=[]) | |
Get the aliased table name clause for a FROM clause which might have a JOIN and/or USE INDEX clause. More... | |
Static Protected Member Functions | |
static | generalizeSQL ($sql) |
Removes most variables from an SQL query and replaces them with X or N for numbers. More... | |
Protected Attributes | |
string[] | $allViews = null |
$delimiter = ';' | |
resource | $fileHandle = null |
$htmlErrors | |
resource | $mConn = null |
Database connection. More... | |
$mDefaultBigSelects = null | |
$mDoneWrites = false | |
$mFlags | |
$mForeign | |
$mLastQuery = '' | |
$mLBInfo = [] | |
$mOpened = false | |
$mPHPError = false | |
$mSchema | |
$mSchemaVars = false | |
$mServer | |
array | $mSessionVars = [] |
$mTablePrefix | |
array[] | $mTrxEndCallbacks = [] |
List of (callable, method name) More... | |
array[] | $mTrxIdleCallbacks = [] |
List of (callable, method name) More... | |
int | $mTrxLevel = 0 |
Either 1 if a transaction is active or 0 otherwise. More... | |
array[] | $mTrxPreCommitCallbacks = [] |
List of (callable, method name) More... | |
string | $mTrxShortId = '' |
Either a short hexidecimal string if a transaction is active or "". More... | |
$preparedArgs | |
BagOStuff | $srvCache |
APC cache. More... | |
bool | $suppressPostCommitCallbacks = false |
Whether to suppress triggering of post-commit callbacks. More... | |
TransactionProfiler | $trxProfiler |
Private Member Functions | |
getSqlFilePath ($filename) | |
Return a path to the DBMS-specific SQL file if it exists, otherwise default SQL file. More... | |
Private Attributes | |
IDatabase null | $lazyMasterHandle |
Lazy handle to the master DB this server replicates from. More... | |
array | $mNamedLocksHeld = [] |
Map of (name => 1) for locks obtained via lock() More... | |
array | $mTrxAtomicLevels = [] |
Array of levels of atomicity within transactions. More... | |
bool | $mTrxAutomatic = false |
Record if the current transaction was started implicitly due to DBO_TRX being set. More... | |
bool | $mTrxAutomaticAtomic = false |
Record if the current transaction was started implicitly by DatabaseBase::startAtomic. More... | |
bool | $mTrxDoneWrites = false |
Record if possible write queries were done in the last transaction started. More... | |
string | $mTrxFname = null |
Remembers the function name given for starting the most recent transaction via begin(). More... | |
float | $mTrxSlaveLag = null |
Lag estimate at the time of BEGIN. More... | |
float null | $mTrxTimestamp = null |
The UNIX time that the transaction started. More... | |
string[] | $mTrxWriteCallers = [] |
Track the write query callers of the current transaction. More... | |
float | $mTrxWriteDuration = 0.0 |
Track the seconds spent in write queries for the current transaction. More... | |
Database abstraction object.
Definition at line 32 of file Database.php.
DatabaseBase::__construct | ( | array | $params | ) |
Constructor.
FIXME: It is possible to construct a Database object with no associated connection object, by specifying no parameters to __construct(). This feature is deprecated and should be removed.
DatabaseBase subclasses should not be constructed directly in external code. DatabaseBase::factory() should be used instead.
array | $params | Parameters passed from DatabaseBase::factory() |
Definition at line 502 of file Database.php.
References $flags, $user, $wgCommandLineMode, $wgDBmwschema, $wgDBprefix, DBO_DEFAULT, DBO_TRX, ObjectCache\getLocalServerInstance(), global, and IDatabase\open().
DatabaseBase::__destruct | ( | ) |
DatabaseBase::__sleep | ( | ) |
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 557 of file Database.php.
DatabaseBase::__toString | ( | ) |
DatabaseBase::addIdentifierQuotes | ( | $s | ) |
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.
string | $s |
Definition at line 1982 of file Database.php.
References $s.
Referenced by DatabaseSqlite\duplicateTableStructure(), replaceVars(), and DatabaseMysqlBaseTest\testAddIdentifierQuotes().
DatabaseBase::addQuotes | ( | $s | ) |
Adds quotes and backslashes.
string | Blob | $s |
Implements IDatabase.
Definition at line 1958 of file Database.php.
References $s, and strencode().
Referenced by buildGroupConcatField(), PopulateRecentChangesSource\buildUpdateCondition(), RefreshImageMetadata\execute(), fillPreparedArg(), RefreshImageMetadata\getConditions(), WatchedItemQueryService\getFromUntilTargetConds(), WatchedItemQueryService\getStartEndConds(), WatchedItemQueryService\getStartFromConds(), WatchedItemQueryService\getUserRelatedConds(), DatabaseMysqlBase\lock(), DatabaseMysqlBase\lockIsFree(), makeList(), DatabaseMysqlBase\masterPosWait(), DatabaseMysqlBase\open(), PopulateContentModel\populatePage(), PopulateContentModel\populateRevisionOrArchive(), replace(), replaceVars(), and DatabaseMysqlBase\unlock().
DatabaseBase::aggregateValue | ( | $valuedata, | |
$valuename = 'value' |
|||
) |
Return aggregated value alias.
array | $valuedata | |
string | $valuename |
Definition at line 1620 of file Database.php.
DatabaseBase::anyChar | ( | ) |
Returns a token for buildLike() that denotes a '_' to be used in a LIKE query.
Implements IDatabase.
Definition at line 2027 of file Database.php.
DatabaseBase::anyString | ( | ) |
Returns a token for buildLike() that denotes a '' to be used in a LIKE query.
Implements IDatabase.
Definition at line 2031 of file Database.php.
Referenced by RefreshImageMetadata\getConditions().
|
protected |
Make sure isOpen() returns true as a sanity check.
DBUnexpectedError |
Definition at line 726 of file Database.php.
References isOpen().
Referenced by begin(), commit(), query(), and rollback().
|
final |
Begin a transaction.
If a transaction is already in progress, that transaction will be committed before the new transaction is started.
Note that when the DBO_TRX flag is set (which is usually the case for web requests, but not for maintenance scripts), any previous database query will have started a transaction automatically.
Nesting of transactions is not supported. Attempts to nest transactions will cause a warning, unless the current transaction was started automatically because of the DBO_TRX flag.
string | $fname |
DBError |
Implements IDatabase.
Definition at line 2627 of file Database.php.
References $fname, $status, assertOpen(), doBegin(), doCommit(), getApproximateLagStatus(), getTransactionProfiler(), pendingWriteQueryDuration(), runOnTransactionIdleCallbacks(), runOnTransactionPreCommitCallbacks(), wfLogDBError(), and wfRandomString().
Referenced by deadlockLoop(), onTransactionPreCommitOrIdle(), SavepointPostgres\query(), query(), startAtomic(), DatabaseTest\testTransactionResolution(), and upsert().
DatabaseBase::bitAnd | ( | $fieldLeft, | |
$fieldRight | |||
) |
string | $fieldLeft | |
string | $fieldRight |
Implements IDatabase.
Definition at line 1628 of file Database.php.
Referenced by WatchedItemQueryService\getExtraDeletedPageLogEntryRelatedCond(), and WatchedItemQueryService\getUserRelatedConds().
DatabaseBase::bitNot | ( | $field | ) |
string | $field |
Implements IDatabase.
Definition at line 1624 of file Database.php.
DatabaseBase::bitOr | ( | $fieldLeft, | |
$fieldRight | |||
) |
string | $fieldLeft | |
string | $fieldRight |
Implements IDatabase.
Definition at line 1632 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.
null | bool | $buffer |
Implements IDatabase.
Definition at line 207 of file Database.php.
References $buffer, DBO_NOBUFFER, and wfSetBit().
Referenced by DatabaseMysql\doQuery(), and DatabaseMysqli\doQuery().
DatabaseBase::buildConcat | ( | $stringList | ) |
Build a concatenation list to feed into a SQL query.
array | $stringList | List of raw SQL expressions; caller is responsible for any quoting |
Implements IDatabase.
Definition at line 1636 of file Database.php.
DatabaseBase::buildGroupConcatField | ( | $delim, | |
$table, | |||
$field, | |||
$conds = '' , |
|||
$join_conds = [] |
|||
) |
Build a GROUP_CONCAT or equivalent statement for a query.
This is useful for combining a field for several rows into a single string. NULL values will not appear in the output, duplicated values will appear, and the resulting delimiter-separated values have no defined sort order. Code using the results may need to use the PHP unique() or sort() methods.
string | $delim | Glue to bind the results together |
string | array | $table | Table name |
string | $field | Field name |
string | array | $conds | Conditions |
string | array | $join_conds | Join conditions |
Implements IDatabase.
Definition at line 1640 of file Database.php.
References addQuotes(), and selectSQLText().
DatabaseBase::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().
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 );
Implements IDatabase.
Definition at line 2007 of file Database.php.
References $params, $s, $value, as, and escapeLikeInternal().
Referenced by RefreshImageMetadata\getConditions().
DatabaseBase::cascadingDeletes | ( | ) |
Returns true if this database supports (and uses) cascading deletes.
Definition at line 319 of file Database.php.
Referenced by dropTable().
DatabaseBase::cleanupTriggers | ( | ) |
Returns true if this database supports (and uses) triggers (e.g.
on the page table)
Definition at line 328 of file Database.php.
DatabaseBase::clearFlag | ( | $flag | ) |
Clear a flag for this connection.
int | $flag | DBO_* constants from Defines.php:
|
Implements IDatabase.
Definition at line 416 of file Database.php.
Referenced by runOnTransactionIdleCallbacks(), DatabaseTest\testTransactionIdle(), and DatabaseTest\testTransactionResolution().
|
final |
Reset the views process cache set by listViews()
Definition at line 2823 of file Database.php.
DatabaseBase::close | ( | ) |
Closes a database connection.
if it is open : commits any open transactions
MWException |
Implements IDatabase.
Definition at line 698 of file Database.php.
References closeConnection(), commit(), trxLevel(), and wfWarn().
Referenced by DatabaseOracle\__destruct(), LoadBalancer\closeAll(), DatabaseMysqlBase\open(), DatabaseMssql\open(), DatabaseSqlite\open(), DatabaseOracle\open(), DatabaseSqliteTest\testInsertIdType(), DatabaseSqliteTest\testNumFields(), and DatabaseSqliteTest\testUpgrades().
|
abstractprotected |
Closes underlying database connection.
Referenced by close(), and DatabaseMysqlBase\ping().
|
final |
Commits a transaction previously started using begin().
If no transaction is in progress, a warning is issued.
Nesting of transactions is not supported.
string | $fname | |
string | $flush | Flush flag, set to 'flush' to disable warnings about explicitly committing implicit transactions, or calling commit when no transaction is in progress. |
This will trigger an exception if there is an ongoing explicit transaction.
Only set the flush flag if you are sure that these warnings are not applicable, and no explicit transactions are open.
DBUnexpectedError |
Implements IDatabase.
Definition at line 2697 of file Database.php.
References assertOpen(), doCommit(), getTransactionProfiler(), pendingWriteQueryDuration(), runOnTransactionIdleCallbacks(), runOnTransactionPreCommitCallbacks(), and wfWarn().
Referenced by close(), LoadBalancer\commitAll(), LoadBalancer\commitMasterChanges(), deadlockLoop(), endAtomic(), getScopedLockAndFlush(), DatabaseMysqlBase\masterPosWait(), onTransactionPreCommitOrIdle(), DatabaseTest\testTransactionResolution(), and upsert().
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.
string | array | $cond | SQL expression which will result in a boolean value |
string | $trueVal | SQL expression to return if true |
string | $falseVal | SQL expression to return if false |
Implements IDatabase.
Definition at line 2341 of file Database.php.
References LIST_AND, and makeList().
DatabaseBase::connectionErrorHandler | ( | $errno, | |
$errstr | |||
) |
int | $errno | |
string | $errstr |
Definition at line 677 of file Database.php.
DatabaseBase::dbSchema | ( | $schema = null | ) |
Get/set the db schema.
string | $schema | The database schema to set, or omitted to leave it unchanged. |
Implements IDatabase.
Definition at line 243 of file Database.php.
References wfSetVar().
DatabaseBase::deadlockLoop | ( | ) |
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.
Avoid using this method outside of Job or Maintenance classes.
Usage: $dbw->deadlockLoop( callback, ... );
Extra arguments are passed through to the specified callback function. This method requires that no transactions are already active to avoid causing premature commits or exceptions.
Returns whatever the callback function returned on its successful, iteration, or false on error, for example if the retry limit was reached.
DBUnexpectedError | |
Exception |
Definition at line 2408 of file Database.php.
References $args, $e, begin(), commit(), rollback(), and wasDeadlock().
DatabaseBase::debug | ( | $debug = null | ) |
Boolean, controls output of large amounts of debug information.
bool | null | $debug |
|
Definition at line 203 of file Database.php.
References $debug, DBO_DEBUG, and wfSetBit().
Referenced by DatabaseMssql\doQuery(), and query().
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.
string | Blob | $b |
Implements IDatabase.
Definition at line 2979 of file Database.php.
DatabaseBase::decodeExpiry | ( | $expiry, | |
$format = TS_MW |
|||
) |
Decode an expiry time into a DBMS independent format.
string | $expiry | DB timestamp field value for expiry |
int | $format | TS_* constant, defaults to TS_MW |
Implements IDatabase.
Definition at line 3313 of file Database.php.
References getInfinity(), and wfTimestamp().
DatabaseBase::delete | ( | $table, | |
$conds, | |||
$fname = __METHOD__ |
|||
) |
DELETE query wrapper.
array | $table | Table name |
string | array | $conds | Array of conditions. See $conds in IDatabase::select() for the format. Use $conds == "*" to delete all rows |
string | $fname | Name of the calling function |
DBUnexpectedError |
Implements IDatabase.
Definition at line 2244 of file Database.php.
References LIST_AND, makeList(), query(), and tableName().
Referenced by MediaWikiTestCase\resetDB().
DatabaseBase::deleteJoin | ( | $delTable, | |
$joinTable, | |||
$delVar, | |||
$joinVar, | |||
$conds, | |||
$fname = __METHOD__ |
|||
) |
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.
string | $delTable | The table to delete from. |
string | $joinTable | The other table. |
string | $delVar | The variable to join on, in the first table. |
string | $joinVar | The variable to join on, in the second table. |
array | $conds | Condition array of field names mapped to variables, ANDed together in the WHERE clause |
string | $fname | Calling function name (use METHOD) for logs/profiling |
DBUnexpectedError |
Implements IDatabase.
Definition at line 2189 of file Database.php.
References $fname, LIST_AND, makeList(), query(), and tableName().
Referenced by DatabaseSqliteTest\testDeleteJoin().
|
final |
Run a callback to do an atomic set of updates for this database.
The $callback takes the following arguments:
If any exception occurs in the callback, then rollback() will be called and the error will be re-thrown. It may also be that the rollback itself fails with an exception before then. In any case, such errors are expected to terminate the request, without any outside caller attempting to catch errors and commit anyway. Note that any rollback undoes all prior atomic section and uncommitted updates, which trashes the current request, requiring an error to be displayed.
This can be an alternative to explicit startAtomic()/endAtomic() calls.
string | $fname | Caller name (usually METHOD) |
callable | $callback | Callback that issues DB updates |
DBError | |
RuntimeException | |
UnexpectedValueException |
Implements IDatabase.
Definition at line 2616 of file Database.php.
References $e, endAtomic(), rollback(), and startAtomic().
|
protected |
Issues the BEGIN command to the database server.
string | $fname |
Definition at line 2692 of file Database.php.
References query().
Referenced by begin().
|
protected |
Issues the COMMIT command to the database server.
string | $fname |
Definition at line 2746 of file Database.php.
References query().
DatabaseBase::doneWrites | ( | ) |
Returns true if the connection may have been used for write queries.
Should return true if unsure.
Implements IDatabase.
Definition at line 382 of file Database.php.
References $mDoneWrites.
|
abstractprotected |
The DBMS-dependent part of query()
string | $sql | SQL query. |
Referenced by DatabaseMysqlBase\masterPosWait(), DatabaseMysqlBase\open(), and query().
|
protected |
Issues the ROLLBACK command to the database server.
string | $fname |
Definition at line 2786 of file Database.php.
References query().
Referenced by rollback().
DatabaseBase::dropTable | ( | $tableName, | |
$fName = __METHOD__ |
|||
) |
Delete a table.
string | $tableName | |
string | $fName |
Definition at line 3281 of file Database.php.
References cascadingDeletes(), query(), tableExists(), and tableName().
DatabaseBase::duplicateTableStructure | ( | $oldName, | |
$newName, | |||
$temporary = false , |
|||
$fname = __METHOD__ |
|||
) |
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).
string | $oldName | Name of table whose structure should be copied |
string | $newName | Name of table to be created |
bool | $temporary | Whether the new table should be temporary |
string | $fname | Calling function name |
MWException |
Definition at line 2808 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 IDatabase::insert().
string | $b |
Implements IDatabase.
Definition at line 2975 of file Database.php.
DatabaseBase::encodeExpiry | ( | $expiry | ) |
Encode an expiry time into the DBMS dependent format.
string | $expiry | Timestamp for expiry, or the 'infinity' string |
Implements IDatabase.
Definition at line 3307 of file Database.php.
References getInfinity(), and timestamp().
|
final |
Ends an atomic section of SQL statements.
Ends the next section of atomic SQL statements and commits the transaction if necessary.
string | $fname |
DBError |
Implements IDatabase.
Definition at line 2601 of file Database.php.
References commit().
Referenced by doAtomicSection().
|
protected |
string | $s |
Definition at line 2003 of file Database.php.
References $s.
Referenced by buildLike().
DatabaseBase::estimateRowCount | ( | $table, | |
$vars = '*' , |
|||
$conds = '' , |
|||
$fname = __METHOD__ , |
|||
$options = [] |
|||
) |
Estimate the number of 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 IDatabase::select().
string | $table | Table name |
string | $vars | Unused |
array | string | $conds | Filters on the table |
string | $fname | Function name for profiling |
array | $options | Options for select |
Implements IDatabase.
Definition at line 1311 of file Database.php.
References $fname, $options, $res, IDatabase\fetchRow(), and select().
DatabaseBase::execute | ( | $prepared, | |
$args = null |
|||
) |
Execute a prepared query with the various arguments.
string | $prepared | The prepared sql |
mixed | $args | Either an array here, or put scalars as varargs |
Definition at line 978 of file Database.php.
References $args, fillPrepared(), and query().
|
staticfinal |
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( $dbType ) ); 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:
string | $dbType | A possible DB type |
array | $p | An array of options to pass to the constructor. Valid options are: host, user, password, dbname, flags, tablePrefix, schema, driver |
MWException | If the database driver or extension cannot be found |
Definition at line 584 of file Database.php.
References as.
Referenced by DBLockManager\getConnection(), SqlBagOStuff\getDB(), ForeignDBRepo\getDBFactory(), DatabaseSqliteMock\newInstance(), DatabaseSqlite\newStandaloneInstance(), MysqlInstaller\openConnection(), SqliteInstaller\openConnection(), MssqlInstaller\openConnection(), PostgresInstaller\openConnectionToAnyDB(), PostgresInstaller\openConnectionWithParams(), LoadBalancer\reallyOpenConnection(), SqliteInstaller\setupDatabase(), MysqlInstaller\setupUser(), MssqlInstaller\submitSettingsForm(), and MysqlInstaller\submitSettingsForm().
DatabaseBase::fieldExists | ( | $table, | |
$field, | |||
$fname = __METHOD__ |
|||
) |
Determines whether a field exists in a table.
string | $table | Table name |
string | $field | Filed to check on that table |
string | $fname | Calling function name (optional) |
Implements IDatabase.
Definition at line 1370 of file Database.php.
References IDatabase\fieldInfo().
DatabaseBase::fieldNamesWithAlias | ( | $fields | ) |
Gets an array of aliased field names.
array | $fields | Array( [alias] => field ) |
Definition at line 1863 of file Database.php.
Referenced by selectSQLText().
DatabaseBase::fieldNameWithAlias | ( | $name, | |
$alias = false |
|||
) |
Get an aliased field name e.g.
fieldName AS newFieldName
string | $name | Field name |
string | bool | $alias | Alias (optional) |
Definition at line 1849 of file Database.php.
DatabaseBase::fillPrepared | ( | $preparedQuery, | |
$args | |||
) |
For faking prepared SQL statements on DBs that don't support it directly.
string | $preparedQuery | A 'preparable' SQL statement |
array | $args | Array of Arguments to fill it with |
Definition at line 997 of file Database.php.
References $args.
Referenced by execute().
|
protected |
preg_callback func for fillPrepared() The arguments should be in $this->preparedArgs and must not be touched while we're doing this.
array | $matches |
DBUnexpectedError |
Definition at line 1014 of file Database.php.
References $matches, addQuotes(), and list.
|
protected |
Free a prepared query, generated by prepare().
string | $prepared |
Definition at line 967 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.
mixed | $res | A SQL result |
Implements IDatabase.
Definition at line 1045 of file Database.php.
DatabaseBase::functionalIndexes | ( | ) |
Returns true if this database can use functional indexes.
Definition at line 374 of file Database.php.
|
staticprotected |
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.
string | $sql | A SQL Query |
Definition at line 1348 of file Database.php.
Referenced by query().
DatabaseBase::getApproximateLagStatus | ( | ) |
Get a slave lag estimate for this server.
Definition at line 2925 of file Database.php.
References getLag(), and getLBInfo().
Referenced by begin(), and getSessionLagStatus().
|
static |
Merge the result of getSessionLagStatus() for several DBs using the most pessimistic values to estimate the lag of any data derived from them in combination.
This is information is useful for caching modules
Definition at line 2950 of file Database.php.
References $res, $status, as, and false.
Referenced by LocalRepo\checkRedirect(), ChangeTags\listExplicitlyDefinedTags(), ChangeTags\listExtensionActivatedTags(), ChangeTags\listExtensionDefinedTags(), MediaWiki\Interwiki\ClassicInterwikiLookup\load(), User\loadFromCache(), SiteStats\numberingroup(), InfoAction\pageCounts(), MessageBlobStore\recacheMessageBlob(), LocalFile\saveToCache(), and ChangeTags\tagUsageStatistics().
DatabaseBase::getDBname | ( | ) |
Get the current DB name.
Implements IDatabase.
Definition at line 1657 of file Database.php.
References $mDBname.
|
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.
Definition at line 3212 of file Database.php.
Referenced by getSchemaVars().
DatabaseBase::getDelimiter | ( | ) |
Definition at line 190 of file Database.php.
References $delimiter.
DatabaseBase::getFlag | ( | $flag | ) |
Returns a boolean whether the flag $flag is set for this connection.
int | $flag | DBO_* constants from Defines.php:
|
Implements IDatabase.
Definition at line 420 of file Database.php.
Referenced by DatabaseOracle\doQuery(), query(), runOnTransactionIdleCallbacks(), startAtomic(), DatabaseTest\testTransactionIdle(), and DatabaseTest\testTransactionResolution().
DatabaseBase::getInfinity | ( | ) |
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.
Implements IDatabase.
Definition at line 3303 of file Database.php.
Referenced by decodeExpiry(), and encodeExpiry().
DatabaseBase::getLag | ( | ) |
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.
Implements IDatabase.
Definition at line 2967 of file Database.php.
Referenced by getApproximateLagStatus(), and DatabaseMysqlBaseTest\testPtHeartbeat().
DatabaseBase::getLazyMasterHandle | ( | ) |
Definition at line 291 of file Database.php.
References $lazyMasterHandle.
Referenced by DatabaseMysqlBase\getMasterServerInfo().
DatabaseBase::getLBInfo | ( | $name = null | ) |
Get properties passed down from the server info array of the load balancer.
string | $name | The entry of the info array to get, or null to get the whole array |
Implements IDatabase.
Definition at line 256 of file Database.php.
References $mLBInfo, and $name.
Referenced by getApproximateLagStatus(), DatabaseMysqlBase\getMasterServerInfo(), getReadOnlyReason(), DatabaseMysqlBase\masterPosWait(), and query().
|
protected |
Create a log context to pass to wfLogDBError or other logging functions.
array | $extras | Additional data to add to context |
Definition at line 687 of file Database.php.
Referenced by DatabaseMysqlBase\getLagFromPtHeartbeat(), DatabaseMysqlBase\open(), and reportQueryError().
DatabaseBase::getMasterPos | ( | ) |
Get the position of this master.
Implements IDatabase.
Definition at line 2454 of file Database.php.
DatabaseBase::getProperty | ( | $name | ) |
General read-only accessor.
string | $name |
Implements IDatabase.
Definition at line 424 of file Database.php.
|
protected |
Definition at line 3330 of file Database.php.
References getLBInfo().
Referenced by isReadOnly(), and query().
DatabaseBase::getSchemaPath | ( | ) |
Return a path to the DBMS-specific schema file, otherwise default to tables.sql.
Definition at line 459 of file Database.php.
References getSqlFilePath().
|
protected |
Get schema variables.
If none have been set via setSchemaVars(), then use some defaults from the current object.
Definition at line 3196 of file Database.php.
References $mSchemaVars, and getDefaultSchemaVars().
Referenced by replaceVars().
DatabaseBase::getScopedLockAndFlush | ( | $lockKey, | |
$fname, | |||
$timeout | |||
) |
Acquire a named lock, flush any transaction, and return an RAII style unlocker object.
This is suitiable for transactions that need to be serialized using cooperative locks, where each transaction can see each others' changes. Any transaction is flushed to clear out stale REPEATABLE-READ snapshot data. Once the returned object falls out of PHP scope, any transaction will be committed and the lock will be released.
If the lock acquisition failed, then no transaction flush happens, and null is returned.
string | $lockKey | Name of lock to release |
string | $fname | Name of the calling method |
int | $timeout | Acquisition timeout in seconds |
DBUnexpectedError |
Implements IDatabase.
Definition at line 3232 of file Database.php.
DatabaseBase::getSearchEngine | ( | ) |
Get search engine class.
All subclasses of this need to implement this if they wish to use searching.
Definition at line 3299 of file Database.php.
DatabaseBase::getServer | ( | ) |
Get the server hostname or IP address.
Implements IDatabase.
Definition at line 1661 of file Database.php.
References $mServer.
Referenced by DatabaseMysqlBase\getApproximateLagStatus(), DatabaseMysqlBase\getMasterServerInfo(), and query().
DatabaseBase::getServerInfo | ( | ) |
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 IDatabase.
Definition at line 183 of file Database.php.
References IDatabase\getServerVersion().
DatabaseBase::getServerUptime | ( | ) |
Determines how long the server has been up STUB.
Implements IDatabase.
Definition at line 2353 of file Database.php.
DatabaseBase::getSessionLagStatus | ( | ) |
Get the slave lag when the current transaction started or a general lag estimate if not transaction is active.
This is useful when transactions might use snapshot isolation (e.g. REPEATABLE-READ in innodb), so the "real" lag of that data is this lag plus transaction duration. If they don't, it is still safe to be pessimistic. In AUTO-COMMIT mode, this still gives an indication of the staleness of subsequent reads.
Implements IDatabase.
Definition at line 2898 of file Database.php.
References getApproximateLagStatus(), and getTransactionLagStatus().
DatabaseBase::getSlavePos | ( | ) |
Get the replication position of this slave.
Implements IDatabase.
Definition at line 2449 of file Database.php.
|
private |
Return a path to the DBMS-specific SQL file if it exists, otherwise default SQL file.
string | $filename |
Definition at line 443 of file Database.php.
References $IP, IDatabase\getType(), and global.
Referenced by getSchemaPath(), and getUpdateKeysPath().
DatabaseBase::getTransactionLagStatus | ( | ) |
Get the slave lag when the current transaction started.
This is useful when transactions might use snapshot isolation (e.g. REPEATABLE-READ in innodb), so the "real" lag of that data is this lag plus transaction duration. If they don't, it is still safe to be pessimistic. This returns null if there is no transaction.
Definition at line 2913 of file Database.php.
References $mTrxSlaveLag, and trxTimestamp().
Referenced by getSessionLagStatus().
|
protected |
Definition at line 298 of file Database.php.
References $trxProfiler.
Referenced by begin(), commit(), query(), and rollback().
DatabaseBase::getUpdateKeysPath | ( | ) |
Return a path to the DBMS-specific update key file, otherwise default to update-keys.sql.
Definition at line 469 of file Database.php.
References getSqlFilePath().
DatabaseBase::getWikiID | ( | ) |
Implements IDatabase.
Definition at line 428 of file Database.php.
References $mDBname.
|
protected |
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.
Do not use this function outside of the Database classes.
null | bool | $ignoreErrors |
Definition at line 227 of file Database.php.
References DBO_IGNORE, and wfSetBit().
Referenced by reportQueryError(), and tableExists().
DatabaseBase::implicitGroupby | ( | ) |
Returns true if this database does an implicit sort when doing GROUP BY.
Implements IDatabase.
Definition at line 351 of file Database.php.
DatabaseBase::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.
Implements IDatabase.
Definition at line 355 of file Database.php.
DatabaseBase::indexExists | ( | $table, | |
$index, | |||
$fname = __METHOD__ |
|||
) |
Determines whether an index exists Usually throws a DBQueryError on failure If errors are explicitly ignored, returns NULL on failure.
string | $table | |
string | $index | |
string | $fname |
Implements IDatabase.
Definition at line 1376 of file Database.php.
References $fname, indexInfo(), and tableExists().
|
abstract |
Get information about an index into an object.
string | $table | Table name |
string | $index | Index name |
string | $fname | Calling function name |
Referenced by indexExists(), and indexUnique().
|
protected |
Get the name of an index in a given table.
string | $index |
Definition at line 1943 of file Database.php.
Referenced by DatabaseMysqlBase\indexInfo(), replaceVars(), and DatabaseMysqlBase\useIndexClause().
DatabaseBase::indexUnique | ( | $table, | |
$index | |||
) |
Determines if a given index is unique.
string | $table | |
string | $index |
Implements IDatabase.
Definition at line 1398 of file Database.php.
References indexInfo().
DatabaseBase::insert | ( | $table, | |
$a, | |||
$fname = __METHOD__ , |
|||
$options = [] |
|||
) |
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 IDatabase::select(). Supported options are:
string | $table | Table name. This will be passed through DatabaseBase::tableName(). |
array | $a | Array of rows to insert |
string | $fname | Calling function name (use METHOD) for logs/profiling |
array | $options | Array of options |
Implements IDatabase.
Definition at line 1418 of file Database.php.
References $fname, $keys, $options, as, makeInsertOptions(), makeList(), query(), and tableName().
DatabaseBase::insertSelect | ( | $destTable, | |
$srcTable, | |||
$varMap, | |||
$conds, | |||
$fname = __METHOD__ , |
|||
$insertOptions = [] , |
|||
$selectOptions = [] |
|||
) |
INSERT SELECT wrapper.
Takes data from a SELECT query and inserts it into another table.
string | $destTable | The table name to insert into |
string | array | $srcTable | May be either a table name, or an array of table names to include in a join. |
array | $varMap | 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 IDatabase::addQuotes() |
array | $conds | Condition array. See $conds in IDatabase::select() for the details of the format of condition arrays. May be "*" to copy the whole table. |
string | $fname | The function name of the caller, from METHOD |
array | $insertOptions | Options for the INSERT part of the query, see IDatabase::insert() for details. |
array | $selectOptions | Options for the SELECT part of the query, see IDatabase::select() for details. |
Implements IDatabase.
Definition at line 2262 of file Database.php.
References list, LIST_AND, makeInsertOptions(), makeList(), makeSelectOptions(), query(), and tableName().
|
protected |
Definition at line 649 of file Database.php.
Referenced by DatabaseMysqlBase\open().
DatabaseBase::isOpen | ( | ) |
Is a connection to the database open?
Implements IDatabase.
Definition at line 408 of file Database.php.
References $mOpened.
Referenced by DatabaseSqlite\__construct(), and assertOpen().
DatabaseBase::isQuotedIdentifier | ( | $name | ) |
Returns if the given identifier looks quoted or not according to the database convention for quoting identifiers .
string | $name |
Definition at line 1995 of file Database.php.
References $name.
Referenced by tableName().
DatabaseBase::isReadOnly | ( | ) |
Implements IDatabase.
Definition at line 3323 of file Database.php.
References getReadOnlyReason().
|
protected |
Determine whether a SQL statement is sensitive to isolation level.
A SQL statement is considered transactable if its result could vary depending on the transaction isolation level. Operational commands such as 'SET' and 'SHOW' are not considered to be transactable.
string | $sql |
Definition at line 778 of file Database.php.
Referenced by query().
DatabaseBase::isView | ( | $name | ) |
Differentiates between a TABLE and a VIEW.
string | $name | Name of the database-structure to test. |
MWException |
Definition at line 2851 of file Database.php.
Referenced by DatabaseMysqlBaseTest\testIsView().
|
protected |
Determine whether a query writes to the DB.
Should return true if unsure.
string | $sql |
Definition at line 765 of file Database.php.
Referenced by query().
DatabaseBase::lastDoneWrites | ( | ) |
Returns the last time the connection may have been used for write queries.
Should return a timestamp if unsure.
Implements IDatabase.
Definition at line 386 of file Database.php.
DatabaseBase::lastQuery | ( | ) |
Return the last query that went through IDatabase::query()
Implements IDatabase.
Definition at line 378 of file Database.php.
References $mLastQuery.
Referenced by DatabaseSqliteMock\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.
string | $sql | SQL query we will append the limit too |
int | $limit | The SQL limit |
int | bool | $offset | The SQL offset (default false) |
DBUnexpectedError |
Definition at line 2321 of file Database.php.
References $limit.
Referenced by selectSQLText().
DatabaseBase::listTables | ( | $prefix = null , |
|
$fname = __METHOD__ |
|||
) |
List all tables on the database.
string | $prefix | Only show tables with this prefix, e.g. mw_ |
string | $fname | Calling function name |
MWException |
Implements IDatabase.
Definition at line 2815 of file Database.php.
Referenced by MediaWikiTestCase\listTables().
DatabaseBase::listViews | ( | $prefix = null , |
|
$fname = __METHOD__ |
|||
) |
Lists all the VIEWs in the database.
For caching purposes the list of all views should be stored in $this->allViews. The process cache can be cleared with clearViewsCache()
string | $prefix | Only show VIEWs with this prefix, eg. unit_test_ |
string | $fname | Name of calling function |
MWException |
Definition at line 2839 of file Database.php.
Referenced by MediaWikiTestCase\listTables(), and DatabaseMysqlBaseTest\testListviews().
DatabaseBase::lock | ( | $lockName, | |
$method, | |||
$timeout = 5 |
|||
) |
Acquire a named lock.
Named locks are not related to transactions
string | $lockName | Name of lock to aquire |
string | $method | Name of the calling method |
int | $timeout | Acquisition timeout in seconds |
Implements IDatabase.
Definition at line 3220 of file Database.php.
Referenced by getScopedLockAndFlush().
DatabaseBase::lockIsFree | ( | $lockName, | |
$method | |||
) |
Check to see if a named lock is available (non-blocking)
string | $lockName | Name of lock to poll |
string | $method | Name of method calling us |
Implements IDatabase.
Definition at line 3216 of file Database.php.
DatabaseBase::lockTables | ( | $read, | |
$write, | |||
$method, | |||
$lowPriority = true |
|||
) |
Lock specific tables.
array | $read | Array of tables to lock for read access |
array | $write | Array of tables to lock for write access |
string | $method | Name of caller |
bool | $lowPriority | Whether to indicate writes to be LOW PRIORITY |
Definition at line 3260 of file Database.php.
DatabaseBase::lowPriorityOption | ( | ) |
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.
Definition at line 2240 of file Database.php.
Referenced by makeUpdateOptionsArray().
DatabaseBase::makeGroupByWithHaving | ( | $options | ) |
Returns an optional GROUP BY with an optional HAVING.
array | $options | Associative array of options |
Definition at line 1194 of file Database.php.
References $options, LIST_AND, and makeList().
Referenced by makeSelectOptions(), and DatabaseMssql\makeSelectOptions().
|
protected |
Helper for DatabaseBase::insert().
array | $options |
Definition at line 1414 of file Database.php.
References $options.
Referenced by insert(), and insertSelect().
DatabaseBase::makeList | ( | $a, | |
$mode = LIST_COMMA |
|||
) |
Makes an encoded list of strings from an array.
array | $a | Containing the data |
int | $mode | Constant
|
MWException|DBUnexpectedError |
Implements IDatabase.
Definition at line 1518 of file Database.php.
References $value, addQuotes(), as, LIST_AND, LIST_NAMES, LIST_OR, and LIST_SET.
Referenced by conditional(), delete(), DatabaseMysqlBase\deleteJoin(), deleteJoin(), WatchedItemQueryService\getExtraDeletedPageLogEntryRelatedCond(), WatchedItemQueryService\getFromUntilTargetConds(), DatabaseMysqlBase\getHeartbeatData(), WatchedItemQueryService\getStartFromConds(), WatchedItemQueryService\getWatchedItemsWithRCInfoQueryConds(), insert(), insertSelect(), makeGroupByWithHaving(), makeWhereFrom2d(), nativeReplace(), selectSQLText(), update(), DatabaseMysqlBase\upsert(), and upsert().
DatabaseBase::makeOrderBy | ( | $options | ) |
Returns an optional ORDER BY.
array | $options | Associative array of options |
Definition at line 1220 of file Database.php.
References $options.
Referenced by makeSelectOptions(), and DatabaseMssql\makeSelectOptions().
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.
array | $options | Associative array of options to be turned into an SQL query, valid keys are listed in the function. |
Definition at line 1110 of file Database.php.
References $options, as, makeGroupByWithHaving(), makeOrderBy(), and useIndexClause().
Referenced by insertSelect(), and selectSQLText().
|
protected |
Make UPDATE options for the DatabaseBase::update function.
array | $options | The options passed to DatabaseBase::update |
Definition at line 1500 of file Database.php.
References $options, and makeUpdateOptionsArray().
Referenced by DatabaseMssql\update(), and update().
|
protected |
Make UPDATE options array for DatabaseBase::makeUpdateOptions.
array | $options |
Definition at line 1476 of file Database.php.
References $options, and lowPriorityOption().
Referenced by makeUpdateOptions().
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.
array | $data | Organized as 2-d array(baseKeyVal => array(subKeyVal => [ignored], ...), ...) |
string | $baseKey | Field name to match the base-level keys to (eg 'pl_namespace') |
string | $subKey | Field name to match the sub-level keys to (eg 'pl_title') |
Implements IDatabase.
Definition at line 1593 of file Database.php.
References $base, as, LIST_AND, LIST_OR, and makeList().
DatabaseBase::masterPosWait | ( | DBMasterPos | $pos, |
$timeout | |||
) |
Wait for the slave to catch up to a given master position.
DBMasterPos | $pos | |
int | $timeout | The maximum number of seconds to wait for synchronisation |
Implements IDatabase.
Definition at line 2444 of file Database.php.
DatabaseBase::maxListLen | ( | ) |
Return the maximum number of items allowed in a list, or 0 for unlimited.
Implements IDatabase.
Definition at line 2971 of file Database.php.
DatabaseBase::namedLocksEnqueue | ( | ) |
Check to see if a named lock used by lock() use blocking queues.
Implements IDatabase.
Definition at line 3247 of file Database.php.
|
protected |
REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE statement.
string | $table | Table name |
array | string | $rows | Row(s) to insert |
string | $fname | Caller function name |
Definition at line 2111 of file Database.php.
References $fname, as, makeList(), query(), and tableName().
Referenced by DatabaseMysqlBase\replace(), and DatabaseSqlite\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.
string | $seqName |
Implements IDatabase.
Definition at line 2035 of file Database.php.
|
final |
Run a callback as soon as there is no transaction pending.
If there is a transaction and it is rolled back, then the callback is cancelled. Queries in the function will run in AUTO-COMMIT mode unless there are begin() calls. Callbacks must commit any transactions that they begin.
This is useful for updates to different systems or when separate transactions are needed. For example, one might want to enqueue jobs into a system outside the database, but only after the database is updated so that the jobs will see the data when they actually run. It can also be used for updates that easily cause deadlocks if locks are held too long.
Updates will execute in the order they were enqueued.
The callback takes one argument: How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_IDLE)
callable | $callback |
Implements IDatabase.
Definition at line 2470 of file Database.php.
References runOnTransactionIdleCallbacks(), and wfGetCaller().
Referenced by DatabaseTest\testTransactionIdle().
|
final |
Run a callback before the current transaction commits or now if there is none.
If there is a transaction and it is rolled back, then the callback is cancelled. Callbacks must not start nor commit any transactions. If no transaction is active, then a transaction will wrap the callback.
This is useful for updates that easily cause deadlocks if locks are held too long but where atomicity is strongly desired for these updates and some related updates.
Updates will execute in the order they were enqueued.
callable | $callback |
Implements IDatabase.
Definition at line 2477 of file Database.php.
References $e, begin(), commit(), rollback(), and wfGetCaller().
|
final |
Run a callback as soon as the current transaction commits or rolls back.
An error is thrown if no transaction is pending. Queries in the function will run in AUTO-COMMIT mode unless there are begin() calls. Callbacks must commit any transactions that they begin.
This is useful for combining cooperative locks and DB transactions.
The callback takes one argument: How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK)
callable | $callback |
Implements IDatabase.
Definition at line 2463 of file Database.php.
References wfGetCaller().
Referenced by DatabaseTest\testTransactionResolution().
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
string | $patch | The name of the patch, like patch-something.sql |
Definition at line 3040 of file Database.php.
References $IP, IDatabase\getType(), and global.
DatabaseBase::pendingWriteCallers | ( | ) |
Get the list of method names that did write queries for this transaction.
Implements IDatabase.
Definition at line 404 of file Database.php.
DatabaseBase::pendingWriteQueryDuration | ( | ) |
Get the time spend running write queries for this transaction.
High times could be due to scanning, updates, locking, and such
Implements IDatabase.
Definition at line 400 of file Database.php.
Referenced by LoadBalancer\approveMasterChanges(), begin(), and commit().
DatabaseBase::ping | ( | ) |
Ping the server and try to reconnect if it there is no connection.
Implements IDatabase.
Definition at line 2893 of file Database.php.
Referenced by LoadBalancer\pingAll(), and query().
|
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...)
string | $sql | |
string | $func |
Definition at line 955 of file Database.php.
DatabaseBase::query | ( | $sql, | |
$fname = __METHOD__ , |
|||
$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.
string | $sql | SQL query |
string | $fname | Name of the calling function, for profiling/SHOW PROCESSLIST comment (you can use METHOD or add some extra info) |
bool | $tempIgnore | Whether to avoid throwing an exception on errors... maybe best to catch the exception instead? |
MWException |
Implements IDatabase.
Definition at line 783 of file Database.php.
References $fname, $mTrxLevel, $res, $ret, $wgUser, IDatabase\affectedRows(), assertOpen(), begin(), ScopedCallback\consume(), DBO_TRX, debug(), doQuery(), generalizeSQL(), getFlag(), getLBInfo(), getReadOnlyReason(), getServer(), getTransactionProfiler(), global, Profiler\instance(), isTransactableQuery(), isWriteQuery(), IDatabase\lastErrno(), IDatabase\lastError(), ping(), MWDebug\query(), MWDebug\queryTime(), reportQueryError(), resultObject(), wasErrorReissuable(), wfBacktrace(), wfDebug(), wfDebugLog(), and writesOrCallbacksPending().
Referenced by DatabaseSqlite\attachDatabase(), DatabaseSqlite\checkForEnabledSearch(), DatabasePostgres\currentSequenceValue(), delete(), DatabaseMysqlBase\deleteJoin(), deleteJoin(), DatabaseSqlite\doBegin(), doBegin(), doCommit(), doRollback(), DatabaseMysqlBase\dropTable(), DatabaseMssql\dropTable(), dropTable(), DatabaseSqlite\duplicateTableStructure(), DatabaseMysqlBase\duplicateTableStructure(), execute(), DatabaseMssql\fieldExists(), DatabaseMysqlBase\fieldInfo(), DatabaseSqlite\fieldInfo(), DatabaseMssql\fieldInfo(), DatabaseMysqlBase\getHeartbeatData(), DatabaseMysqlBase\getLagFromSlaveStatus(), DatabaseMysqlBase\getMasterPos(), DatabaseMysqlBase\getMysqlStatus(), DatabaseMysqlBase\getSlavePos(), DatabaseSqlite\indexInfo(), DatabaseMssql\indexInfo(), DatabaseMysqlBase\indexInfo(), DatabaseMssql\insert(), insert(), insertSelect(), DatabaseMysqlBase\listTables(), DatabaseMysqlBase\listViews(), DatabaseMysqlBase\lock(), DatabaseMysqlBase\lockIsFree(), DatabaseMysqlBase\lockTables(), DatabaseMysql\mysqlSetCharset(), DatabaseMysqli\mysqlSetCharset(), nativeReplace(), DatabaseSqlite\openFile(), replace(), MediaWikiTestCase\resetDB(), DatabasePostgres\schemaExists(), DatabaseMssql\select(), select(), DatabaseMssql\selectDB(), selectRowCount(), DatabaseMysqlBase\serverIsReadOnly(), DatabaseMysqlBase\setBigSelects(), DatabaseMysqlBase\setSessionOptions(), MediaWikiTestCase\setupTestDB(), sourceStream(), DatabaseMssql\tableExists(), tableExists(), DatabaseMssql\textFieldSize(), textFieldSize(), DatabaseMysqlBase\unlock(), DatabaseMysqlBase\unlockTables(), DatabaseMssql\update(), update(), and DatabaseMysqlBase\upsert().
DatabaseBase::realTimestamps | ( | ) |
Returns true if this database uses timestamps rather than integers.
Definition at line 347 of file Database.php.
DatabaseBase::replace | ( | $table, | |
$uniqueIndexes, | |||
$rows, | |||
$fname = __METHOD__ |
|||
) |
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.
string | $table | The table to replace the row(s) in. |
array | $uniqueIndexes | Is an array of indexes. Each element may be either a field name or an array of field names |
array | $rows | Can be either a single row to insert, or multiple rows, in the same format as for IDatabase::insert() |
string | $fname | Calling function name (use METHOD) for logs/profiling |
Implements IDatabase.
Definition at line 2053 of file Database.php.
References $fname, addQuotes(), as, insert(), query(), and tableName().
|
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.
{$var}
should be used for identifiers (e.g. table and database names). It is passed through the database's addIdentifierQuotes method which can be overridden if the database uses something other than backticks.string | $ins | SQL statement to replace variables in |
Definition at line 3158 of file Database.php.
References $vars, addIdentifierQuotes(), addQuotes(), getSchemaVars(), indexName(), tableName(), and use.
Referenced by sourceStream().
DatabaseBase::reportConnectionError | ( | $error = 'Unknown error' | ) |
string | $error | Fallback error message, used if none is given by DB |
DBConnectionError |
Implements IDatabase.
Definition at line 739 of file Database.php.
References IDatabase\lastError().
Referenced by DatabaseMysqlBase\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.
string | $error | |
int | $errno | |
string | $sql | |
string | $fname | |
bool | $tempIgnore |
DBQueryError |
Implements IDatabase.
Definition at line 921 of file Database.php.
References $fname, getLogContext(), ignoreErrors(), wfDebug(), and wfLogDBError().
Referenced by query().
|
protected |
Definition at line 658 of file Database.php.
Referenced by DatabaseMysqlBase\open().
|
protected |
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.
bool | ResultWrapper | resource | object | $result |
Definition at line 2880 of file Database.php.
Referenced by query().
|
final |
Rollback a transaction previously started using begin().
If no transaction is in progress, a warning is issued.
No-op on non-transactional databases.
string | $fname | |
string | $flush | Flush flag, set to 'flush' to disable warnings about calling rollback when no transaction is in progress. This will silently break any ongoing explicit transaction. Only set the flush flag if you are sure that it is safe to ignore these warnings in your context. |
DBUnexpectedError |
Implements IDatabase.
Definition at line 2753 of file Database.php.
References assertOpen(), doRollback(), getTransactionProfiler(), runOnTransactionIdleCallbacks(), and wfWarn().
Referenced by deadlockLoop(), doAtomicSection(), onTransactionPreCommitOrIdle(), runOnTransactionIdleCallbacks(), DatabaseTest\testTransactionResolution(), and upsert().
DatabaseBase::runOnTransactionIdleCallbacks | ( | $trigger | ) |
Actually run and consume any "on transaction idle/resolution" callbacks.
This method should not be used outside of Database/LoadBalancer
integer | $trigger | IDatabase::TRIGGER_* constant |
Definition at line 2513 of file Database.php.
References $e, as, clearFlag(), DBO_TRX, getFlag(), list, MWExceptionHandler\logException(), rollback(), setFlag(), and trxLevel().
Referenced by begin(), commit(), onTransactionIdle(), rollback(), and LoadBalancer\runMasterPostCommitCallbacks().
DatabaseBase::runOnTransactionPreCommitCallbacks | ( | ) |
Actually run and consume any "on transaction pre-commit" callbacks.
This method should not be used outside of Database/LoadBalancer
Definition at line 2564 of file Database.php.
References $e, $mTrxPreCommitCallbacks, as, list, and MWExceptionHandler\logException().
Referenced by begin(), commit(), and LoadBalancer\runMasterPreCommitCallbacks().
DatabaseBase::searchableIPs | ( | ) |
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';
Definition at line 365 of file Database.php.
DatabaseBase::select | ( | $table, | |
$vars, | |||
$conds = '' , |
|||
$fname = __METHOD__ , |
|||
$options = [] , |
|||
$join_conds = [] |
|||
) |
Execute a SELECT query constructed using the various parameters provided.
See below for full details of the parameters.
string | array | $table | Table name |
string | array | $vars | Field names |
string | array | $conds | Conditions |
string | $fname | Caller function name |
array | $options | Query options |
array | $join_conds | Join conditions |
string | array | $table | 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.
Do not use untrusted user input as a table name. Alias names should not have characters outside of the Basic multilingual plane.
string | array | $vars | 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.
Untrusted user input must not be passed to this parameter.
string | array | $conds | 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:
Untrusted user input is safe in the values of string keys, however untrusted input must not be used in the array key names or in the values of numeric keys. Escaping of untrusted input used in values of numeric keys should be done via IDatabase::addQuotes()
string | array | $options | 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:
string | array | $join_conds | 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 the same as the $conds parameter. Thus it can be an SQL fragment, or an array where the string keys are equality and the numeric keys are SQL fragments all AND'd together. For example:
array( 'page' => array( 'LEFT JOIN', 'page_latest=rev_id' ) )
Implements IDatabase.
Definition at line 1233 of file Database.php.
References $fname, $options, $vars, query(), and selectSQLText().
Referenced by MediaWikiTestCase\assertSelect(), DatabaseMysqlBase\estimateRowCount(), estimateRowCount(), RefreshImageMetadata\execute(), DatabaseSqlite\listTables(), PopulateContentModel\populatePage(), PopulateContentModel\populateRevisionOrArchive(), selectField(), selectFieldValues(), selectRow(), and DatabaseSqliteTest\testNumFields().
DatabaseBase::selectDB | ( | $db | ) |
Change the current database.
string | $db |
Implements IDatabase.
Definition at line 1648 of file Database.php.
Referenced by DatabaseMysqlBase\open().
DatabaseBase::selectField | ( | $table, | |
$var, | |||
$cond = '' , |
|||
$fname = __METHOD__ , |
|||
$options = [] |
|||
) |
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.
string | array | $table | Table name. See IDatabase::select() for details. |
string | $var | The field name to select. This must be a valid SQL fragment: do not use unvalidated user input. |
string | array | $cond | The condition array. See IDatabase::select() for details. |
string | $fname | The function name of the caller. |
string | array | $options | The query options. See IDatabase::select() for details. |
Implements IDatabase.
Definition at line 1048 of file Database.php.
References $fname, $options, $res, IDatabase\fetchRow(), IDatabase\numRows(), and select().
Referenced by DatabasePostgres\fieldType(), DatabaseMysqlBase\getServerVersion(), DatabaseMysqlBase\setBigSelects(), DatabaseSqliteTest\testDuplicateTableStructure(), DatabaseSqliteTest\testDuplicateTableStructureVirtual(), and LocalFileMoveBatch\verifyDBUpdates().
DatabaseBase::selectFieldValues | ( | $table, | |
$var, | |||
$cond = '' , |
|||
$fname = __METHOD__ , |
|||
$options = [] , |
|||
$join_conds = [] |
|||
) |
DatabaseBase::selectRow | ( | $table, | |
$vars, | |||
$conds, | |||
$fname = __METHOD__ , |
|||
$options = [] , |
|||
$join_conds = [] |
|||
) |
Single row SELECT wrapper.
Equivalent to IDatabase::select(), except that a single row object is returned. If the query returns no rows, false is returned.
string | array | $table | Table name |
string | array | $vars | Field names |
array | $conds | Conditions |
string | $fname | Caller function name |
string | array | $options | Query options |
array | string | $join_conds | Join conditions |
Implements IDatabase.
Definition at line 1291 of file Database.php.
References $fname, $options, $res, $vars, array(), IDatabase\fetchObject(), IDatabase\numRows(), and select().
Referenced by DatabaseSqlite\indexUnique().
DatabaseBase::selectRowCount | ( | $tables, | |
$vars = '*' , |
|||
$conds = '' , |
|||
$fname = __METHOD__ , |
|||
$options = [] , |
|||
$join_conds = [] |
|||
) |
Get the number of rows in dataset.
This is useful when trying to do COUNT(*) but with a LIMIT for performance.
Takes the same arguments as IDatabase::select().
array | string | $tables | Table names |
string | $vars | Unused |
array | string | $conds | Filters on the table |
string | $fname | Function name for profiling |
array | $options | Options for select |
array | $join_conds | Join conditions (since 1.27) |
Implements IDatabase.
Definition at line 1325 of file Database.php.
References $fname, $options, $res, $tables, IDatabase\fetchRow(), query(), and selectSQLText().
DatabaseBase::selectSQLText | ( | $table, | |
$vars, | |||
$conds = '' , |
|||
$fname = __METHOD__ , |
|||
$options = [] , |
|||
$join_conds = [] |
|||
) |
The equivalent of IDatabase::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().
string | array | $table | Table name |
string | array | $vars | Field names |
string | array | $conds | Conditions |
string | $fname | Caller function name |
string | array | $options | Query options |
string | array | $join_conds | Join conditions |
Implements IDatabase.
Definition at line 1240 of file Database.php.
References $from, $options, $vars, array(), fieldNamesWithAlias(), limitResult(), list, LIST_AND, makeList(), makeSelectOptions(), and tableNamesWithUseIndexOrJOIN().
Referenced by DatabaseSqlite\buildGroupConcatField(), buildGroupConcatField(), select(), and selectRowCount().
DatabaseBase::serverIsReadOnly | ( | ) |
Implements IDatabase.
Definition at line 2459 of file Database.php.
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.
bool | string | $value | True for allow, false for deny, or "default" to restore the initial value |
Implements IDatabase.
Definition at line 3319 of file Database.php.
DatabaseBase::setFileHandle | ( | $fh | ) |
Set the filehandle to copy write statements to.
resource | $fh | File handle |
Definition at line 252 of file Database.php.
DatabaseBase::setFlag | ( | $flag | ) |
Set a flag for this connection.
int | $flag | DBO_* constants from Defines.php:
|
Implements IDatabase.
Definition at line 412 of file Database.php.
Referenced by DatabaseUpdater\__construct(), DatabaseOracle\open(), runOnTransactionIdleCallbacks(), DatabaseTest\testTransactionIdle(), and DatabaseTest\testTransactionResolution().
DatabaseBase::setLazyMasterHandle | ( | IDatabase | $conn | ) |
Set a lazy-connecting DB handle to the master DB (for replication status purposes)
IDatabase | $conn |
Definition at line 282 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.
string | $name | |
array | $value |
Implements IDatabase.
Definition at line 268 of file Database.php.
Referenced by DatabaseMysqlBaseTest\testPtHeartbeat().
|
final |
Whether to disable running of post-commit callbacks.
This method should not be used outside of Database/LoadBalancer
bool | $suppress |
Definition at line 2501 of file Database.php.
Referenced by LoadBalancer\runMasterPostCommitCallbacks(), and LoadBalancer\runMasterPreCommitCallbacks().
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.
bool | array | $vars | Mapping variable name to value. |
Implements IDatabase.
Definition at line 3051 of file Database.php.
References $vars.
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.
array | $options |
Implements IDatabase.
Definition at line 2986 of file Database.php.
DatabaseBase::setTransactionProfiler | ( | TransactionProfiler | $profiler | ) |
DatabaseBase::sourceFile | ( | $filename, | |
$lineCallback = false , |
|||
$resultCallback = false , |
|||
$fname = false , |
|||
$inputCallback = 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).
string | $filename | File name to open |
bool | callable | $lineCallback | Optional function called before reading each line |
bool | callable | $resultCallback | Optional function called for each MySQL result |
bool | string | $fname | Calling function name or false if name should be generated dynamically using $filename |
bool | callable | $inputCallback | Optional function called for each complete line sent |
Exception|MWException |
Definition at line 3005 of file Database.php.
References $e, and sourceStream().
Referenced by DatabaseSqliteTest\prepareTestDB().
DatabaseBase::sourceStream | ( | $fp, | |
$lineCallback = false , |
|||
$resultCallback = false , |
|||
$fname = __METHOD__ , |
|||
$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).
resource | $fp | File handle |
bool | callable | $lineCallback | Optional function called before reading each query |
bool | callable | $resultCallback | Optional function called for each MySQL result |
string | $fname | Calling function name |
bool | callable | $inputCallback | Optional function called for each complete query sent |
Definition at line 3068 of file Database.php.
References $line, $res, IDatabase\lastError(), query(), replaceVars(), and streamStatementEnd().
Referenced by sourceFile().
|
final |
Begin an atomic section of statements.
If a transaction has been started already, just keep track of the given section name to make sure the transaction is not committed pre-maturely. This function can be used in layers (with sub-sections), so use a stack to keep track of the different atomic sections. If there is no transaction, start one implicitly.
The goal of this function is to create an atomic section of SQL queries without having to start a new transaction if it already exists.
Atomic sections are more strict than transactions. With transactions, attempting to begin a new transaction when one is already running results in MediaWiki issuing a brief warning and doing an implicit commit. All atomic levels must be explicitly closed using IDatabase::endAtomic(), and any database transactions cannot be began or committed until all atomic levels are closed. There is no such thing as implicitly opening or closing an atomic section.
string | $fname |
DBError |
Implements IDatabase.
Definition at line 2587 of file Database.php.
References $fname, begin(), DBO_TRX, and getFlag().
Referenced by doAtomicSection().
DatabaseBase::streamStatementEnd | ( | & | $sql, |
& | $newLine | ||
) |
Called by sourceStream() to check if we've reached a statement end.
string | $sql | SQL assembled so far |
string | $newLine | New line about to be added to $sql |
Definition at line 3126 of file Database.php.
Referenced by sourceStream().
|
abstract |
Wrapper for addslashes()
string | $s | String to be slashed. |
Referenced by addQuotes().
DatabaseBase::strictIPs | ( | ) |
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.
Definition at line 338 of file Database.php.
DatabaseBase::strreplace | ( | $orig, | |
$old, | |||
$new | |||
) |
Returns a comand for str_replace function in SQL query.
Uses REPLACE() in MySQL
string | $orig | Column to modify |
string | $old | Column to seek |
string | $new | Column to replace with |
Implements IDatabase.
Definition at line 2349 of file Database.php.
DatabaseBase::tableExists | ( | $table, | |
$fname = __METHOD__ |
|||
) |
Query whether a given table exists.
string | $table | |
string | $fname |
Implements IDatabase.
Definition at line 1389 of file Database.php.
References $fname, $res, ignoreErrors(), query(), and tableName().
Referenced by DatabaseMysqlBase\dropTable(), dropTable(), and indexExists().
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.
string | $name | Database table name |
string | $format | 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 |
Definition at line 1684 of file Database.php.
References $name, $wgSharedDB, $wgSharedPrefix, $wgSharedSchema, $wgSharedTables, database, global, isQuotedIdentifier(), list, and table.
Referenced by delete(), DatabaseMysqlBase\deleteJoin(), deleteJoin(), DatabaseMysqlBase\dropTable(), dropTable(), DatabaseMysqlBase\fieldInfo(), DatabaseMysqlBase\indexInfo(), insert(), insertSelect(), DatabaseMysqlBase\lockTables(), nativeReplace(), replace(), replaceVars(), MediaWikiTestCase\resetDB(), tableExists(), textFieldSize(), update(), and DatabaseMysqlBase\upsert().
DatabaseBase::tableNames | ( | ) |
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 1774 of file Database.php.
DatabaseBase::tableNamesN | ( | ) |
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 1796 of file Database.php.
DatabaseBase::tableNamesWithAlias | ( | $tables | ) |
Gets an array of aliased table names.
array | $tables | Array( [alias] => table ) |
Definition at line 1829 of file Database.php.
|
protected |
Get the aliased table name clause for a FROM clause which might have a JOIN and/or USE INDEX clause.
array | $tables | ( [alias] => table ) |
array | $use_index | Same as for select() |
array | $join_conds | Same as for select() |
Definition at line 1884 of file Database.php.
Referenced by selectSQLText().
DatabaseBase::tableNameWithAlias | ( | $name, | |
$alias = false |
|||
) |
Get an aliased table name e.g.
tableName AS newTableName
string | $name | Table name, see tableName() |
string | bool | $alias | Alias (optional) |
Definition at line 1815 of file Database.php.
DatabaseBase::tablePrefix | ( | $prefix = null | ) |
Get/set the table prefix.
string | $prefix | The table prefix to set, or omitted to leave it unchanged. |
Implements IDatabase.
Definition at line 239 of file Database.php.
References wfSetVar().
Referenced by MediaWikiTestCase\listTables(), MediaWikiTestCase\setupTestDB(), and DatabaseSqliteTest\testTableName().
DatabaseBase::textFieldSize | ( | $table, | |
$field | |||
) |
Returns the size of a text field, or -1 for "unlimited".
string | $table | |
string | $field |
Definition at line 2215 of file Database.php.
References $res, IDatabase\fetchObject(), query(), and tableName().
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.
string | int | $ts |
Implements IDatabase.
Definition at line 2855 of file Database.php.
References TS_MW, and wfTimestamp().
Referenced by encodeExpiry(), WatchedItemQueryService\getStartFromConds(), User\makeUpdateConditions(), and timestampOrNull().
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.
string | int | $ts |
Implements IDatabase.
Definition at line 2859 of file Database.php.
References timestamp().
DatabaseBase::trxLevel | ( | ) |
Gets the current transaction level.
Historically, transactions were allowed to be "nested". This is no longer supported, so this function really only returns a boolean.
Implements IDatabase.
Definition at line 231 of file Database.php.
References $mTrxLevel.
Referenced by close(), and runOnTransactionIdleCallbacks().
DatabaseBase::trxTimestamp | ( | ) |
Get the UNIX timestamp of the time that the transaction was established.
This can be used to reason about the staleness of SELECT data in REPEATABLE-READ transaction isolation level.
Implements IDatabase.
Definition at line 235 of file Database.php.
Referenced by getTransactionLagStatus().
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.
array | $sqls | SQL statements to combine |
bool | $all | Use UNION ALL |
Implements IDatabase.
Definition at line 2335 of file Database.php.
DatabaseBase::unionSupportsOrderAndLimit | ( | ) |
Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries within the UNION construct.
Implements IDatabase.
Definition at line 2331 of file Database.php.
DatabaseBase::unlock | ( | $lockName, | |
$method | |||
) |
Release a lock.
Named locks are not related to transactions
string | $lockName | Name of lock to release |
string | $method | Name of the calling method |
Implements IDatabase.
Definition at line 3226 of file Database.php.
Referenced by getScopedLockAndFlush().
DatabaseBase::unlockTables | ( | $method | ) |
Unlock specific tables.
string | $method | The caller |
Definition at line 3270 of file Database.php.
DatabaseBase::update | ( | $table, | |
$values, | |||
$conds, | |||
$fname = __METHOD__ , |
|||
$options = [] |
|||
) |
UPDATE wrapper.
Takes a condition array and a SET array.
string | $table | Name of the table to UPDATE. This will be passed through DatabaseBase::tableName(). |
array | $values | 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 IDatabase::addQuotes(). |
array | $conds | An array of conditions (WHERE). See IDatabase::select() for the details of the format of condition arrays. Use '*' to update all rows. |
string | $fname | The function name of the caller (from METHOD), for logging and profiling. |
array | $options | An array of UPDATE options, can be:
|
Implements IDatabase.
Definition at line 1506 of file Database.php.
References $fname, $options, LIST_AND, LIST_SET, makeList(), makeUpdateOptions(), query(), and tableName().
Referenced by LocalFileMoveBatch\doDBUpdates(), PopulateContentModel\updatePageRows(), PopulateContentModel\updateRevisionOrArchiveRows(), and upsert().
INSERT ON DUPLICATE KEY UPDATE wrapper, upserts an array into a table.
This updates any conflicting rows (according to the unique indexes) using the provided SET clause and inserts any remaining (non-conflicted) rows.
$rows may be either:
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.
Usually throws a DBQueryError on failure. If errors are explicitly ignored, returns success.
string | $table | Table name. This will be passed through DatabaseBase::tableName(). |
array | $rows | A single row or list of rows to insert |
array | $uniqueIndexes | List of single field names or field name tuples |
array | $set | 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 IDatabase::addQuotes(). |
string | $fname | Calling function name (use METHOD) for logs/profiling |
Exception |
Implements IDatabase.
Definition at line 2135 of file Database.php.
References $e, $fname, $mTrxLevel, as, begin(), commit(), insert(), LIST_AND, LIST_OR, makeList(), rollback(), and update().
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.
string | $index |
Definition at line 2049 of file Database.php.
Referenced by makeSelectOptions().
DatabaseBase::wasConnectionError | ( | $errno | ) |
Determines if the given query error was a connection drop STUB.
integer | string | $errno |
Definition at line 2380 of file Database.php.
DatabaseBase::wasDeadlock | ( | ) |
Determines if the last failure was due to a deadlock STUB.
Implements IDatabase.
Definition at line 2357 of file Database.php.
Referenced by deadlockLoop().
DatabaseBase::wasErrorReissuable | ( | ) |
Determines if the last query error was something that should be dealt with by pinging the connection and reissuing the query.
STUB
Implements IDatabase.
Definition at line 2365 of file Database.php.
Referenced by query().
DatabaseBase::wasLockTimeout | ( | ) |
Determines if the last failure was due to a lock timeout STUB.
Implements IDatabase.
Definition at line 2361 of file Database.php.
DatabaseBase::wasReadOnlyError | ( | ) |
Determines if the last failure was due to the database being read-only.
STUB
Implements IDatabase.
Definition at line 2369 of file Database.php.
DatabaseBase::writesOrCallbacksPending | ( | ) |
Returns true if there is a transaction open with possible write queries or transaction pre-commit/idle callbacks waiting on it to finish.
Implements IDatabase.
Definition at line 394 of file Database.php.
References $mTrxPreCommitCallbacks.
Referenced by LoadBalancer\commitMasterChanges(), and query().
DatabaseBase::writesPending | ( | ) |
Implements IDatabase.
Definition at line 390 of file Database.php.
References $mTrxDoneWrites.
|
protected |
Definition at line 178 of file Database.php.
Referenced by DatabaseMysqlBase\listViews().
|
protected |
Definition at line 78 of file Database.php.
Referenced by getDelimiter().
|
protected |
Definition at line 172 of file Database.php.
|
protected |
Definition at line 76 of file Database.php.
|
private |
Lazy handle to the master DB this server replicates from.
Definition at line 166 of file Database.php.
Referenced by getLazyMasterHandle().
|
protected |
Database connection.
Definition at line 52 of file Database.php.
Referenced by __toString(), DatabaseMysqlBase\getBindingHandle(), DatabaseMssql\open(), and DatabaseOracle\open().
DatabaseBase::$mDBname |
Definition at line 46 of file Database.php.
Referenced by getDBname(), getWikiID(), and DatabaseMysqlBase\listViews().
|
protected |
Definition at line 69 of file Database.php.
Referenced by DatabaseMysqlBase\setBigSelects().
|
protected |
Definition at line 43 of file Database.php.
Referenced by doneWrites().
|
protected |
Definition at line 66 of file Database.php.
|
protected |
Definition at line 67 of file Database.php.
|
protected |
Definition at line 42 of file Database.php.
Referenced by lastQuery().
|
protected |
Definition at line 68 of file Database.php.
Referenced by getLBInfo().
|
private |
Map of (name => 1) for locks obtained via lock()
Definition at line 163 of file Database.php.
|
protected |
Definition at line 53 of file Database.php.
Referenced by isOpen().
DatabaseBase::$mPassword |
Definition at line 46 of file Database.php.
|
protected |
Definition at line 44 of file Database.php.
|
protected |
Definition at line 65 of file Database.php.
|
protected |
Definition at line 70 of file Database.php.
Referenced by getSchemaVars().
|
protected |
Definition at line 46 of file Database.php.
Referenced by getServer().
|
protected |
Definition at line 72 of file Database.php.
|
protected |
Definition at line 64 of file Database.php.
|
private |
Array of levels of atomicity within transactions.
Definition at line 139 of file Database.php.
|
private |
Record if the current transaction was started implicitly due to DBO_TRX being set.
Definition at line 132 of file Database.php.
|
private |
Record if the current transaction was started implicitly by DatabaseBase::startAtomic.
Definition at line 146 of file Database.php.
|
private |
Record if possible write queries were done in the last transaction started.
Definition at line 124 of file Database.php.
Referenced by writesPending().
|
protected |
List of (callable, method name)
Definition at line 60 of file Database.php.
|
private |
Remembers the function name given for starting the most recent transaction via begin().
Used to provide additional context for error reporting.
Definition at line 116 of file Database.php.
|
protected |
List of (callable, method name)
Definition at line 56 of file Database.php.
|
protected |
Either 1 if a transaction is active or 0 otherwise.
The other Trx fields may not be meaningfull if this is 0.
Definition at line 86 of file Database.php.
Referenced by query(), trxLevel(), and upsert().
|
protected |
List of (callable, method name)
Definition at line 58 of file Database.php.
Referenced by runOnTransactionPreCommitCallbacks(), and writesOrCallbacksPending().
|
protected |
Either a short hexidecimal string if a transaction is active or "".
Definition at line 94 of file Database.php.
|
private |
Lag estimate at the time of BEGIN.
Definition at line 107 of file Database.php.
Referenced by getTransactionLagStatus().
|
private |
The UNIX time that the transaction started.
Callers can assume that if snapshot isolation is used, then the data is at least up to date to that point (possibly more up-to-date since the first SELECT defines the snapshot).
Definition at line 104 of file Database.php.
|
private |
Track the write query callers of the current transaction.
Definition at line 153 of file Database.php.
|
private |
Track the seconds spent in write queries for the current transaction.
Definition at line 160 of file Database.php.
DatabaseBase::$mUser |
Definition at line 46 of file Database.php.
|
protected |
Definition at line 74 of file Database.php.
|
protected |
APC cache.
Definition at line 49 of file Database.php.
Referenced by DatabaseMysqlBase\getMasterServerInfo().
|
protected |
Whether to suppress triggering of post-commit callbacks.
Definition at line 62 of file Database.php.
|
protected |
Definition at line 181 of file Database.php.
Referenced by getTransactionProfiler().
const DatabaseBase::DEADLOCK_DELAY_MAX = 1500000 |
Maximum time to wait before retry.
Definition at line 40 of file Database.php.
const DatabaseBase::DEADLOCK_DELAY_MIN = 500000 |
Minimum time to wait before retry, in microseconds.
Definition at line 37 of file Database.php.
const DatabaseBase::DEADLOCK_TRIES = 4 |
Number of times to re-try an operation in case of deadlock.
Definition at line 34 of file Database.php.