MediaWiki
1.30.0
|
Helper class to handle automatically marking connections as reusable (via RAII pattern) as well handling deferring the actual network connection until the handle is used. More...
Public Member Functions | |
__call ( $name, array $arguments) | |
__construct (ILoadBalancer $lb, $conn) | |
__destruct () | |
Clean up the connection when out of scope. More... | |
addQuotes ( $s) | |
Adds quotes and backslashes. More... | |
affectedRows () | |
Get the number of rows affected by the last write query. 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__, $mode=IDatabase::TRANSACTION_EXPLICIT) | |
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... | |
buildStringCast ( $field) | |
clearFlag ( $flag, $remember=self::REMEMBER_NOTHING) | |
Clear a flag for this connection. 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... | |
databasesAreIndependent () | |
Returns true if DBs are assumed to be on potentially different servers. More... | |
dataSeek ( $res, $row) | |
Change the position of the cursor in a result object. More... | |
dbSchema ( $schema=null) | |
Get/set the db schema. 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... | |
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... | |
explicitTrxActive () | |
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... | |
fieldExists ( $table, $field, $fname=__METHOD__) | |
Determines whether a field exists in a table. 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... | |
flushSnapshot ( $fname=__METHOD__) | |
Commit any transaction but error out if writes or callbacks are pending. More... | |
freeResult ( $res) | |
Free a result object returned by query() or select(). More... | |
getDBname () | |
Get the current DB name. More... | |
getDomainID () | |
getFlag ( $flag) | |
Returns a boolean whether the flag $flag is set for this connection. More... | |
getInfinity () | |
Find out when 'infinity' is. More... | |
getLag () | |
Get replica DB lag. More... | |
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) | |
getReplicaPos () | |
Get the replication position of this replica DB. More... | |
getScopedLockAndFlush ( $lockKey, $fname, $timeout) | |
Acquire a named lock, flush any transaction, and return an RAII style unlocker object. 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. More... | |
getServerVersion () | |
A string describing the current software version, like from mysql_get_server_info(). More... | |
getSessionLagStatus () | |
Get the replica DB lag when the current transaction started or a general lag estimate if not transaction is active. More... | |
getSoftwareLink () | |
Returns a wikitext link to the DB's website, e.g., return "[https://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... | |
getWikiID () | |
Alias for getDomainID() More... | |
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... | |
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... | |
insertId () | |
Get the inserted value of an auto-increment row. More... | |
insertSelect ( $destTable, $srcTable, $varMap, $conds, $fname=__METHOD__, $insertOptions=[], $selectOptions=[], $selectJoinConds=[]) | |
INSERT SELECT wrapper. More... | |
isOpen () | |
Is a connection to the database open? More... | |
isReadOnly () | |
lastDoneWrites () | |
Returns the last time the connection may have been used for write queries. More... | |
lastErrno () | |
Get the last error number. More... | |
lastError () | |
Get a description of the last error. More... | |
lastQuery () | |
Return the last query that went through IDatabase::query() More... | |
listTables ( $prefix=null, $fname=__METHOD__) | |
List all tables on 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... | |
makeList ( $a, $mode=self::LIST_COMMA) | |
Makes an encoded list of strings from an array. 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 replica DB 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) | |
Deprecated method, calls should be removed. 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... | |
onTransactionIdle (callable $callback, $fname=__METHOD__) | |
Run a callback as soon as there is no transaction pending. More... | |
onTransactionPreCommitOrIdle (callable $callback, $fname=__METHOD__) | |
Run a callback before the current transaction commits or now if there is none. More... | |
onTransactionResolution (callable $callback, $fname=__METHOD__) | |
Run a callback as soon as the current transaction commits or rolls back. More... | |
open ( $server, $user, $password, $dbName) | |
Open a connection to the database. More... | |
pendingWriteCallers () | |
Get the list of method names that did write queries for this transaction. More... | |
pendingWriteQueryDuration ( $type=self::ESTIMATE_TOTAL) | |
Get the time spend running write queries for this transaction. More... | |
pendingWriteRowsAffected () | |
Get the number of affected rows from pending write queries. More... | |
ping (&$rtt=null) | |
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... | |
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... | |
restoreFlags ( $state=self::RESTORE_PRIOR) | |
Restore the flags to their prior state before the last setFlag/clearFlag call. More... | |
rollback ( $fname=__METHOD__, $flush='') | |
Rollback a transaction previously started using begin(). 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=[], $join_conds=[]) | |
A SELECT wrapper which returns a single field from a single result row. More... | |
selectFieldValues ( $table, $var, $cond='', $fname=__METHOD__, $options=[], $join_conds=[]) | |
A SELECT wrapper which returns a list of single field values from result rows. More... | |
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... | |
setFlag ( $flag, $remember=self::REMEMBER_NOTHING) | |
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... | |
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... | |
setTableAliases (array $aliases) | |
Make certain table names use their own database, schema, and table prefix when passed into SQL queries pre-escaped and without a qualified database name. More... | |
setTransactionListener ( $name, callable $callback=null) | |
Run a callback each time any transaction commits or rolls back. More... | |
startAtomic ( $fname=__METHOD__) | |
Begin an atomic section of statements. More... | |
strreplace ( $orig, $old, $new) | |
Returns a command for str_replace function in SQL query. More... | |
tableExists ( $table, $fname=__METHOD__) | |
Query whether a given table exists. More... | |
tablePrefix ( $prefix=null) | |
Get/set the table prefix. 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... | |
unionConditionPermutations ( $table, $vars, array $permute_conds, $extra_conds='', $fname=__METHOD__, $options=[], $join_conds=[]) | |
Construct a UNION query for permutations of conditions. 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... | |
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... | |
wasDeadlock () | |
Determines if the last failure was due to a deadlock. More... | |
wasErrorReissuable () | |
Determines if the last query error was due to a dropped connection and 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. 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 Attributes | |
const | FLD_DOMAIN = 2 |
const | FLD_FLAGS = 3 |
const | FLD_GROUP = 1 |
const | FLD_INDEX = 0 |
Private Attributes | |
Database null | $conn |
Live connection handle. More... | |
ILoadBalancer | $lb |
array null | $params |
N-tuple of (server index, group, DatabaseDomain|string) More... | |
Helper class to handle automatically marking connections as reusable (via RAII pattern) as well handling deferring the actual network connection until the handle is used.
Definition at line 15 of file DBConnRef.php.
Wikimedia\Rdbms\DBConnRef::__construct | ( | ILoadBalancer | $lb, |
$conn | |||
) |
ILoadBalancer | $lb | Connection manager for $conn |
Database | array | $conn | Database handle or (server index, query groups, domain, flags) |
Definition at line 32 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\$conn, Wikimedia\Rdbms\DBConnRef\$lb, and captcha-old\count.
Wikimedia\Rdbms\DBConnRef::__destruct | ( | ) |
Clean up the connection when out of scope.
Definition at line 616 of file DBConnRef.php.
Wikimedia\Rdbms\DBConnRef::__call | ( | $name, | |
array | $arguments | ||
) |
Definition at line 43 of file DBConnRef.php.
References $flags, $name, Wikimedia\Rdbms\DBConnRef\$params, and list.
Referenced by Wikimedia\Rdbms\DBConnRef\addQuotes(), Wikimedia\Rdbms\DBConnRef\affectedRows(), Wikimedia\Rdbms\DBConnRef\aggregateValue(), Wikimedia\Rdbms\DBConnRef\anyChar(), Wikimedia\Rdbms\DBConnRef\anyString(), Wikimedia\Rdbms\DBConnRef\begin(), Wikimedia\Rdbms\DBConnRef\bitAnd(), Wikimedia\Rdbms\DBConnRef\bitNot(), Wikimedia\Rdbms\DBConnRef\bitOr(), Wikimedia\Rdbms\DBConnRef\bufferResults(), Wikimedia\Rdbms\DBConnRef\buildConcat(), Wikimedia\Rdbms\DBConnRef\buildGroupConcatField(), Wikimedia\Rdbms\DBConnRef\buildLike(), Wikimedia\Rdbms\DBConnRef\buildStringCast(), Wikimedia\Rdbms\DBConnRef\clearFlag(), Wikimedia\Rdbms\DBConnRef\close(), Wikimedia\Rdbms\DBConnRef\commit(), Wikimedia\Rdbms\DBConnRef\conditional(), Wikimedia\Rdbms\DBConnRef\databasesAreIndependent(), Wikimedia\Rdbms\DBConnRef\dataSeek(), Wikimedia\Rdbms\DBConnRef\dbSchema(), Wikimedia\Rdbms\MaintainableDBConnRef\deadlockLoop(), Wikimedia\Rdbms\DBConnRef\decodeBlob(), Wikimedia\Rdbms\DBConnRef\decodeExpiry(), Wikimedia\Rdbms\DBConnRef\delete(), Wikimedia\Rdbms\DBConnRef\deleteJoin(), Wikimedia\Rdbms\DBConnRef\doAtomicSection(), Wikimedia\Rdbms\DBConnRef\doneWrites(), Wikimedia\Rdbms\MaintainableDBConnRef\dropTable(), Wikimedia\Rdbms\MaintainableDBConnRef\duplicateTableStructure(), Wikimedia\Rdbms\DBConnRef\encodeBlob(), Wikimedia\Rdbms\DBConnRef\encodeExpiry(), Wikimedia\Rdbms\DBConnRef\endAtomic(), Wikimedia\Rdbms\DBConnRef\estimateRowCount(), Wikimedia\Rdbms\DBConnRef\explicitTrxActive(), Wikimedia\Rdbms\DBConnRef\fetchObject(), Wikimedia\Rdbms\DBConnRef\fetchRow(), Wikimedia\Rdbms\DBConnRef\fieldExists(), Wikimedia\Rdbms\DBConnRef\fieldInfo(), Wikimedia\Rdbms\DBConnRef\fieldName(), Wikimedia\Rdbms\DBConnRef\flushSnapshot(), Wikimedia\Rdbms\DBConnRef\freeResult(), Wikimedia\Rdbms\DBConnRef\getDBname(), Wikimedia\Rdbms\DBConnRef\getDomainID(), Wikimedia\Rdbms\DBConnRef\getFlag(), Wikimedia\Rdbms\DBConnRef\getInfinity(), Wikimedia\Rdbms\DBConnRef\getLag(), Wikimedia\Rdbms\DBConnRef\getLBInfo(), Wikimedia\Rdbms\DBConnRef\getMasterPos(), Wikimedia\Rdbms\DBConnRef\getProperty(), Wikimedia\Rdbms\DBConnRef\getReplicaPos(), Wikimedia\Rdbms\DBConnRef\getScopedLockAndFlush(), Wikimedia\Rdbms\DBConnRef\getServer(), Wikimedia\Rdbms\DBConnRef\getServerInfo(), Wikimedia\Rdbms\DBConnRef\getServerUptime(), Wikimedia\Rdbms\DBConnRef\getServerVersion(), Wikimedia\Rdbms\DBConnRef\getSessionLagStatus(), Wikimedia\Rdbms\DBConnRef\getSoftwareLink(), Wikimedia\Rdbms\DBConnRef\getType(), Wikimedia\Rdbms\DBConnRef\implicitGroupby(), Wikimedia\Rdbms\DBConnRef\implicitOrderby(), Wikimedia\Rdbms\DBConnRef\indexExists(), Wikimedia\Rdbms\DBConnRef\indexUnique(), Wikimedia\Rdbms\DBConnRef\insert(), Wikimedia\Rdbms\DBConnRef\insertId(), Wikimedia\Rdbms\DBConnRef\insertSelect(), Wikimedia\Rdbms\DBConnRef\isOpen(), Wikimedia\Rdbms\DBConnRef\isReadOnly(), Wikimedia\Rdbms\DBConnRef\lastDoneWrites(), Wikimedia\Rdbms\DBConnRef\lastErrno(), Wikimedia\Rdbms\DBConnRef\lastError(), Wikimedia\Rdbms\DBConnRef\lastQuery(), Wikimedia\Rdbms\DBConnRef\listTables(), Wikimedia\Rdbms\MaintainableDBConnRef\listViews(), Wikimedia\Rdbms\DBConnRef\lock(), Wikimedia\Rdbms\DBConnRef\lockIsFree(), Wikimedia\Rdbms\MaintainableDBConnRef\lockTables(), Wikimedia\Rdbms\DBConnRef\makeList(), Wikimedia\Rdbms\DBConnRef\makeWhereFrom2d(), Wikimedia\Rdbms\DBConnRef\masterPosWait(), Wikimedia\Rdbms\DBConnRef\maxListLen(), Wikimedia\Rdbms\DBConnRef\namedLocksEnqueue(), Wikimedia\Rdbms\DBConnRef\nextSequenceValue(), Wikimedia\Rdbms\DBConnRef\numFields(), Wikimedia\Rdbms\DBConnRef\numRows(), Wikimedia\Rdbms\DBConnRef\onTransactionIdle(), Wikimedia\Rdbms\DBConnRef\onTransactionPreCommitOrIdle(), Wikimedia\Rdbms\DBConnRef\onTransactionResolution(), Wikimedia\Rdbms\DBConnRef\open(), Wikimedia\Rdbms\DBConnRef\pendingWriteCallers(), Wikimedia\Rdbms\DBConnRef\pendingWriteQueryDuration(), Wikimedia\Rdbms\DBConnRef\pendingWriteRowsAffected(), Wikimedia\Rdbms\DBConnRef\ping(), Wikimedia\Rdbms\DBConnRef\query(), Wikimedia\Rdbms\DBConnRef\replace(), Wikimedia\Rdbms\DBConnRef\reportConnectionError(), Wikimedia\Rdbms\DBConnRef\reportQueryError(), Wikimedia\Rdbms\DBConnRef\restoreFlags(), Wikimedia\Rdbms\DBConnRef\rollback(), Wikimedia\Rdbms\DBConnRef\select(), Wikimedia\Rdbms\DBConnRef\selectDB(), Wikimedia\Rdbms\DBConnRef\selectField(), Wikimedia\Rdbms\DBConnRef\selectFieldValues(), Wikimedia\Rdbms\DBConnRef\selectRow(), Wikimedia\Rdbms\DBConnRef\selectRowCount(), Wikimedia\Rdbms\DBConnRef\selectSQLText(), Wikimedia\Rdbms\DBConnRef\serverIsReadOnly(), Wikimedia\Rdbms\DBConnRef\setBigSelects(), Wikimedia\Rdbms\DBConnRef\setFlag(), Wikimedia\Rdbms\DBConnRef\setLazyMasterHandle(), Wikimedia\Rdbms\DBConnRef\setLBInfo(), Wikimedia\Rdbms\DBConnRef\setSchemaVars(), Wikimedia\Rdbms\DBConnRef\setSessionOptions(), Wikimedia\Rdbms\DBConnRef\setTableAliases(), Wikimedia\Rdbms\DBConnRef\setTransactionListener(), Wikimedia\Rdbms\MaintainableDBConnRef\sourceFile(), Wikimedia\Rdbms\MaintainableDBConnRef\sourceStream(), Wikimedia\Rdbms\DBConnRef\startAtomic(), Wikimedia\Rdbms\MaintainableDBConnRef\streamStatementEnd(), Wikimedia\Rdbms\DBConnRef\strreplace(), Wikimedia\Rdbms\DBConnRef\tableExists(), Wikimedia\Rdbms\MaintainableDBConnRef\tableLocksHaveTransactionScope(), Wikimedia\Rdbms\MaintainableDBConnRef\tableName(), Wikimedia\Rdbms\MaintainableDBConnRef\tableNames(), Wikimedia\Rdbms\MaintainableDBConnRef\tableNamesN(), Wikimedia\Rdbms\DBConnRef\tablePrefix(), Wikimedia\Rdbms\MaintainableDBConnRef\textFieldSize(), Wikimedia\Rdbms\DBConnRef\timestamp(), Wikimedia\Rdbms\DBConnRef\timestampOrNull(), Wikimedia\Rdbms\DBConnRef\trxLevel(), Wikimedia\Rdbms\DBConnRef\trxTimestamp(), Wikimedia\Rdbms\DBConnRef\unionConditionPermutations(), Wikimedia\Rdbms\DBConnRef\unionQueries(), Wikimedia\Rdbms\DBConnRef\unionSupportsOrderAndLimit(), Wikimedia\Rdbms\DBConnRef\unlock(), Wikimedia\Rdbms\MaintainableDBConnRef\unlockTables(), Wikimedia\Rdbms\DBConnRef\update(), Wikimedia\Rdbms\DBConnRef\upsert(), Wikimedia\Rdbms\DBConnRef\wasDeadlock(), Wikimedia\Rdbms\DBConnRef\wasErrorReissuable(), Wikimedia\Rdbms\DBConnRef\wasLockTimeout(), Wikimedia\Rdbms\DBConnRef\wasReadOnlyError(), Wikimedia\Rdbms\DBConnRef\writesOrCallbacksPending(), and Wikimedia\Rdbms\DBConnRef\writesPending().
Wikimedia\Rdbms\DBConnRef::addQuotes | ( | $s | ) |
Adds quotes and backslashes.
string | int | null | bool | Blob | $s |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 373 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::affectedRows | ( | ) |
Get the number of rows affected by the last write query.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 218 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::aggregateValue | ( | $valuedata, | |
$valuename = 'value' |
|||
) |
Return aggregated value alias.
array | $valuedata | |
string | $valuename |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 327 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::anyChar | ( | ) |
Returns a token for buildLike() that denotes a '_' to be used in a LIKE query.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 381 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::anyString | ( | ) |
Returns a token for buildLike() that denotes a '' to be used in a LIKE query.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 385 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::begin | ( | $fname = __METHOD__ , |
|
$mode = IDatabase::TRANSACTION_EXPLICIT |
|||
) |
Begin a transaction.
If a transaction is already in progress, that transaction will be committed before the new transaction is started.
Only call this from code with outer transcation scope. See https://www.mediawiki.org/wiki/Database_transactions for details. Nesting of transactions is not supported.
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 | Calling function name |
string | $mode | A situationally valid IDatabase::TRANSACTION_* constant [optional] |
DBError |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 507 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::bitAnd | ( | $fieldLeft, | |
$fieldRight | |||
) |
string | $fieldLeft | |
string | $fieldRight |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 335 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::bitNot | ( | $field | ) |
string | $field |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 331 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::bitOr | ( | $fieldLeft, | |
$fieldRight | |||
) |
string | $fieldLeft | |
string | $fieldRight |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 339 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 56 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 343 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 347 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 = [ 'My_page_title/', $dbr->anyString() ]; $query .= $dbr->buildLike( $pattern );
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 377 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::buildStringCast | ( | $field | ) |
string | $field | Field or column to cast |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 353 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::clearFlag | ( | $flag, | |
$remember = self::REMEMBER_NOTHING |
|||
) |
Clear a flag for this connection.
int | $flag | DBO_* constants from Defines.php:
|
string | $remember | IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING] |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 140 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::close | ( | ) |
Closes a database connection.
if it is open : commits any open transactions
DBError |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 230 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::commit | ( | $fname = __METHOD__ , |
|
$flush = '' |
|||
) |
Commits a transaction previously started using begin().
If no transaction is in progress, a warning is issued.
Only call this from code with outer transcation scope. See https://www.mediawiki.org/wiki/Database_transactions for details. Nesting of transactions is not supported.
string | $fname | |
string | $flush | Flush flag, set to situationally valid IDatabase::FLUSHING_* constant 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 Wikimedia\Rdbms\IDatabase.
Definition at line 511 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 435 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::databasesAreIndependent | ( | ) |
Returns true if DBs are assumed to be on potentially different servers.
In systems like mysql/mariadb, different databases can easily be referenced on a single connection merely by name, even in a single query via JOIN. On the other hand, Postgres treats databases as fully separate, only allowing mechanisms like postgres_fdw to effectively "mount" foreign DBs. This is true even among DBs on the same server.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 357 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::dataSeek | ( | $res, | |
$row | |||
) |
Change the position of the cursor in a result object.
mixed | $res | A SQL result |
int | $row |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 202 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::dbSchema | ( | $schema = null | ) |
Get/set the db schema.
string | $schema | The database schema to set, or omitted to leave it unchanged. |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 76 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 557 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 597 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::delete | ( | $table, | |
$conds, | |||
$fname = __METHOD__ |
|||
) |
DELETE query wrapper.
string | $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 Wikimedia\Rdbms\IDatabase.
Definition at line 409 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 403 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::doAtomicSection | ( | $fname, | |
callable | $callback | ||
) |
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 Wikimedia\Rdbms\IDatabase.
Definition at line 503 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::doneWrites | ( | ) |
Returns true if the connection may have been used for write queries.
Should return true if unsure.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 104 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 553 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::encodeExpiry | ( | $expiry | ) |
Encode an expiry time into the DBMS dependent format.
string | $expiry | Timestamp for expiry, or the 'infinity' string |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 593 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::endAtomic | ( | $fname = __METHOD__ | ) |
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 Wikimedia\Rdbms\IDatabase.
Definition at line 499 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 283 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::explicitTrxActive | ( | ) |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 68 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::fetchObject | ( | $res | ) |
Fetch the next row from the given result object, in object form.
Fields can be retrieved with $row->fieldname, with fields acting like member variables. If no more rows are available, false is returned.
IResultWrapper | stdClass | $res | Object as returned from IDatabase::query(), etc. |
DBUnexpectedError | Thrown if the database returns an error |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 178 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::fetchRow | ( | $res | ) |
Fetch the next row from the given result object, in associative array form.
Fields are retrieved with $row['fieldname']. If no more rows are available, false is returned.
IResultWrapper | $res | Result object as returned from IDatabase::query(), etc. |
DBUnexpectedError | Thrown if the database returns an error |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 182 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 295 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::fieldInfo | ( | $table, | |
$field | |||
) |
mysql_fetch_field() wrapper Returns false if the field doesn't exist
string | $table | Table name |
string | $field | Field name |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 214 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::fieldName | ( | $res, | |
$n | |||
) |
Get a field name in a result object.
mixed | $res | A SQL result |
int | $n |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 194 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::flushSnapshot | ( | $fname = __METHOD__ | ) |
Commit any transaction but error out if writes or callbacks are pending.
This is intended for clearing out REPEATABLE-READ snapshots so that callers can see a new point-in-time of the database. This is useful when one of many transaction rounds finished and significant time will pass in the script's lifetime. It is also useful to call on a replica DB after waiting on replication to catch up to the master.
string | $fname | Calling function name |
DBUnexpectedError |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 519 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 246 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getDBname | ( | ) |
Get the current DB name.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 365 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getDomainID | ( | ) |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 156 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call(), Wikimedia\Rdbms\DBConnRef\FLD_DOMAIN, and Wikimedia\Rdbms\DatabaseDomain\getId().
Referenced by Wikimedia\Rdbms\DBConnRef\getWikiID().
Wikimedia\Rdbms\DBConnRef::getFlag | ( | $flag | ) |
Returns a boolean whether the flag $flag is set for this connection.
int | $flag | DBO_* constants from Defines.php:
|
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 148 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 589 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getLag | ( | ) |
Get replica DB 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 Wikimedia\Rdbms\IDatabase.
Definition at line 541 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 80 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getMasterPos | ( | ) |
Get the position of this master.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 471 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getProperty | ( | $name | ) |
Definition at line 152 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getReplicaPos | ( | ) |
Get the replication position of this replica DB.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 467 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getScopedLockAndFlush | ( | $lockKey, | |
$fname, | |||
$timeout | |||
) |
Acquire a named lock, flush any transaction, and return an RAII style unlocker object.
Only call this from outer transcation scope and when only one DB will be affected. See https://www.mediawiki.org/wiki/Database_transactions for details.
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, the lock will be released unless a transaction is active. If one is active, then the lock will be released when it either commits or rolls back.
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 Wikimedia\Rdbms\IDatabase.
Definition at line 581 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getServer | ( | ) |
Get the server hostname or IP address.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 369 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 52 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getServerUptime | ( | ) |
Determines how long the server has been up.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 443 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getServerVersion | ( | ) |
A string describing the current software version, like from mysql_get_server_info().
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 226 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getSessionLagStatus | ( | ) |
Get the replica DB 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 Wikimedia\Rdbms\IDatabase.
Definition at line 545 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getSoftwareLink | ( | ) |
Returns a wikitext link to the DB's website, e.g., return "[https://www.mysql.com/ MySQL]"; Should at least contain plain text, if for some reason your database has no website.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 222 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getType | ( | ) |
Get the type of the DBMS, as it appears in $wgDBtype.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 170 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::getWikiID | ( | ) |
Alias for getDomainID()
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 166 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\getDomainID().
Wikimedia\Rdbms\DBConnRef::implicitGroupby | ( | ) |
Returns true if this database does an implicit sort when doing GROUP BY.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 92 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 96 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 299 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::indexUnique | ( | $table, | |
$index | |||
) |
Determines if a given index is unique.
string | $table | |
string | $index |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 307 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Database::tableName(). |
array | $a | Array of rows to insert |
string | $fname | Calling function name (use METHOD) for logs/profiling |
array | $options | Array of options |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 311 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::insertId | ( | ) |
Get the inserted value of an auto-increment row.
This should only be called after an insert that used an auto-incremented value. If no such insert was previously done in the current database session, the return value is undefined.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 198 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::insertSelect | ( | $destTable, | |
$srcTable, | |||
$varMap, | |||
$conds, | |||
$fname = __METHOD__ , |
|||
$insertOptions = [] , |
|||
$selectOptions = [] , |
|||
$selectJoinConds = [] |
|||
) |
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 [ '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. |
array | $selectJoinConds | Join conditions for the SELECT part of the query, see IDatabase::select() for details. |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 413 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::isOpen | ( | ) |
Is a connection to the database open?
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 132 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::isReadOnly | ( | ) |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 605 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::lastDoneWrites | ( | ) |
Returns the last time the connection may have been used for write queries.
Should return a timestamp if unsure.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 108 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::lastErrno | ( | ) |
Get the last error number.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 206 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::lastError | ( | ) |
Get a description of the last error.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 210 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::lastQuery | ( | ) |
Return the last query that went through IDatabase::query()
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 100 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 |
DBError |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 523 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 573 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 569 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::makeList | ( | $a, | |
$mode = self::LIST_COMMA |
|||
) |
Makes an encoded list of strings from an array.
These can be used to make conjunctions or disjunctions on SQL condition strings derived from an array (see IDatabase::select() $conds documentation).
Example usage:
This would set $sql to "rev_user = '$id' AND (rev_minor = '1' OR rev_len < '500')"
array | $a | Containing the data |
int | $mode | IDatabase class constant:
|
DBError |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 319 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 [ baseKeyVal => [ 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 Wikimedia\Rdbms\IDatabase.
Definition at line 323 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::masterPosWait | ( | DBMasterPos | $pos, |
$timeout | |||
) |
Wait for the replica DB to catch up to a given master position.
DBMasterPos | $pos | |
int | $timeout | The maximum number of seconds to wait for synchronisation |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 463 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::maxListLen | ( | ) |
Return the maximum number of items allowed in a list, or 0 for unlimited.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 549 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::namedLocksEnqueue | ( | ) |
Check to see if a named lock used by lock() use blocking queues.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 585 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::nextSequenceValue | ( | $seqName | ) |
Deprecated method, calls should be removed.
This was formerly used for PostgreSQL and Oracle to handle self::insertId() auto-incrementing fields. It is no longer necessary since DatabasePostgres::insertId() has been reimplemented using lastval()
and Oracle has been reimplemented using triggers.
Implementations should return null if inserting NULL
into an auto-incrementing field works, otherwise it should return an instance of NextSequenceValue and filter it on calls to relevant methods.
string | $seqName |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 389 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::numFields | ( | $res | ) |
Get the number of fields in a result object.
mixed | $res | A SQL result |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 190 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::numRows | ( | $res | ) |
Get the number of rows in a result object.
mixed | $res | A SQL result |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 186 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::onTransactionIdle | ( | callable | $callback, |
$fname = __METHOD__ |
|||
) |
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:
callable | $callback | |
string | $fname | Caller name |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 483 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::onTransactionPreCommitOrIdle | ( | callable | $callback, |
$fname = __METHOD__ |
|||
) |
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 | |
string | $fname | Caller name |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 487 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::onTransactionResolution | ( | callable | $callback, |
$fname = __METHOD__ |
|||
) |
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:
callable | $callback | |
string | $fname | Caller name |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 479 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::open | ( | $server, | |
$user, | |||
$password, | |||
$dbName | |||
) |
Open a connection to the database.
Usually aborts on failure
string | $server | Database server host |
string | $user | Database user name |
string | $password | Database user password |
string | $dbName | Database name |
DBConnectionError |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 174 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::pendingWriteCallers | ( | ) |
Get the list of method names that did write queries for this transaction.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 124 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::pendingWriteQueryDuration | ( | $type = self::ESTIMATE_TOTAL | ) |
Get the time spend running write queries for this transaction.
High times could be due to scanning, updates, locking, and such
string | $type | IDatabase::ESTIMATE_* constant [default: ESTIMATE_ALL] |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 120 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::pendingWriteRowsAffected | ( | ) |
Get the number of affected rows from pending write queries.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 128 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::ping | ( | & | $rtt = null | ) |
Ping the server and try to reconnect if it there is no connection.
float | null | &$rtt | Value to store the estimated RTT [optional] |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 535 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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? |
DBError |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 238 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 393 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::reportConnectionError | ( | $error = 'Unknown error' | ) |
string | $error | Fallback error message, used if none is given by DB |
DBConnectionError |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 234 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 242 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::restoreFlags | ( | $state = self::RESTORE_PRIOR | ) |
Restore the flags to their prior state before the last setFlag/clearFlag call.
string | $state | IDatabase::RESTORE_* constant. [default: RESTORE_PRIOR] |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 144 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::rollback | ( | $fname = __METHOD__ , |
|
$flush = '' |
|||
) |
Rollback a transaction previously started using begin().
If no transaction is in progress, a warning is issued.
Only call this from code with outer transcation scope. See https://www.mediawiki.org/wiki/Database_transactions for details. Nesting of transactions is not supported. If a serious unexpected error occurs, throwing an Exception is preferrable, using a pre-installed error handler to trigger rollback (in any case, failure to issue COMMIT will cause rollback server-side).
string | $fname | Calling function name |
string | $flush | Flush flag, set to a situationally valid IDatabase::FLUSHING_* constant 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 Wikimedia\Rdbms\IDatabase.
Definition at line 515 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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: |
[ '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 Database::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: |
[ '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: |
[ '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:
[ 'page' => [ 'LEFT JOIN', 'page_latest=rev_id' ] ]
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 262 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::selectDB | ( | $db | ) |
Change the current database.
string | $db |
DBConnectionError | If databasesAreIndependent() is true and an error occurs |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 361 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::selectField | ( | $table, | |
$var, | |||
$cond = '' , |
|||
$fname = __METHOD__ , |
|||
$options = [] , |
|||
$join_conds = [] |
|||
) |
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. |
string | array | $join_conds | The query join conditions. See IDatabase::select() for details. |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 250 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::selectFieldValues | ( | $table, | |
$var, | |||
$cond = '' , |
|||
$fname = __METHOD__ , |
|||
$options = [] , |
|||
$join_conds = [] |
|||
) |
A SELECT wrapper which returns a list of single field values from result rows.
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. |
string | array | $join_conds | The query join conditions. See IDatabase::select() for details. |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 256 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 276 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 289 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 269 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::serverIsReadOnly | ( | ) |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 475 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 601 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::setFlag | ( | $flag, | |
$remember = self::REMEMBER_NOTHING |
|||
) |
Set a flag for this connection.
int | $flag | DBO_* constants from Defines.php:
|
string | $remember | IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING] |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 136 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::setLazyMasterHandle | ( | IDatabase | $conn | ) |
Set a lazy-connecting DB handle to the master DB (for replication status purposes)
IDatabase | $conn |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 88 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 84 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 565 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 561 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::setTableAliases | ( | array | $aliases | ) |
Make certain table names use their own database, schema, and table prefix when passed into SQL queries pre-escaped and without a qualified database name.
For example, "user" can be converted to "myschema.mydbname.user" for convenience. Appearances like user
, somedb.user, somedb.someschema.user will used literally.
Calling this twice will completely clear any old table aliases. Also, note that callers are responsible for making sure the schemas and databases actually exist.
array[] | $aliases | Map of (table => (dbname, schema, prefix) map) |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 609 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::setTransactionListener | ( | $name, | |
callable | $callback = null |
||
) |
Run a callback each time any transaction commits or rolls back.
The callback takes two arguments:
Registering a callback here will not affect writesOrCallbacks() pending
string | $name | Callback name |
callable | null | $callback | Use null to unset a listener |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 491 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::startAtomic | ( | $fname = __METHOD__ | ) |
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.
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 Wikimedia\Rdbms\IDatabase.
Definition at line 495 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::strreplace | ( | $orig, | |
$old, | |||
$new | |||
) |
Returns a command 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 Wikimedia\Rdbms\IDatabase.
Definition at line 439 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::tableExists | ( | $table, | |
$fname = __METHOD__ |
|||
) |
Query whether a given table exists.
string | $table | |
string | $fname |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 303 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::tablePrefix | ( | $prefix = null | ) |
Get/set the table prefix.
string | $prefix | The table prefix to set, or omitted to leave it unchanged. |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 72 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 527 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 531 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 60 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 64 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::unionConditionPermutations | ( | $table, | |
$vars, | |||
array | $permute_conds, | ||
$extra_conds = '' , |
|||
$fname = __METHOD__ , |
|||
$options = [] , |
|||
$join_conds = [] |
|||
) |
Construct a UNION query for permutations of conditions.
Databases sometimes have trouble with queries that have multiple values for multiple condition parameters combined with limits and ordering. This method constructs queries for the Cartesian product of the conditions and unions them all together.
string | array | $table | Table name |
string | array | $vars | Field names |
array | $permute_conds | Conditions for the Cartesian product. Keys are field names, values are arrays of the possible values for that field. |
string | array | $extra_conds | Additional conditions to include in the query. |
string | $fname | Caller function name |
string | array | $options | Query options. In addition to the options recognized by IDatabase::select(), the following may be used:
|
string | array | $join_conds | Join conditions |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 428 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 424 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::unionSupportsOrderAndLimit | ( | ) |
Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries within the UNION construct.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 420 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Wikimedia\Rdbms\IDatabase.
Definition at line 577 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::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 Database::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(). Values with integer keys form unquoted SET statements, which can be used for things like "field = field + 1" or similar computed values. |
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 Wikimedia\Rdbms\IDatabase.
Definition at line 315 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::upsert | ( | $table, | |
array | $rows, | ||
array | $uniqueIndexes, | ||
array | $set, | ||
$fname = __METHOD__ |
|||
) |
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 Database::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(). Values with integer keys form unquoted SET statements, which can be used for things like "field = field + 1" or similar computed values. |
string | $fname | Calling function name (use METHOD) for logs/profiling |
Exception |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 397 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::wasDeadlock | ( | ) |
Determines if the last failure was due to a deadlock.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 447 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::wasErrorReissuable | ( | ) |
Determines if the last query error was due to a dropped connection and should be dealt with by pinging the connection and reissuing the query.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 455 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::wasLockTimeout | ( | ) |
Determines if the last failure was due to a lock timeout.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 451 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::wasReadOnlyError | ( | ) |
Determines if the last failure was due to the database being read-only.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 459 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::writesOrCallbacksPending | ( | ) |
Returns true if there is a transaction open with possible write queries or transaction pre-commit/idle callbacks waiting on it to finish.
This does not count recurring callbacks, e.g. from setTransactionListener().
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 116 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
Wikimedia\Rdbms\DBConnRef::writesPending | ( | ) |
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 112 of file DBConnRef.php.
References Wikimedia\Rdbms\DBConnRef\__call().
|
private |
Live connection handle.
Definition at line 19 of file DBConnRef.php.
Referenced by Wikimedia\Rdbms\DBConnRef\__construct().
|
private |
Definition at line 17 of file DBConnRef.php.
Referenced by Wikimedia\Rdbms\DBConnRef\__construct().
|
private |
N-tuple of (server index, group, DatabaseDomain|string)
Definition at line 21 of file DBConnRef.php.
Referenced by Wikimedia\Rdbms\DBConnRef\__call().
const Wikimedia\Rdbms\DBConnRef::FLD_DOMAIN = 2 |
Definition at line 25 of file DBConnRef.php.
Referenced by Wikimedia\Rdbms\DBConnRef\getDomainID().
const Wikimedia\Rdbms\DBConnRef::FLD_FLAGS = 3 |
Definition at line 26 of file DBConnRef.php.
const Wikimedia\Rdbms\DBConnRef::FLD_GROUP = 1 |
Definition at line 24 of file DBConnRef.php.
const Wikimedia\Rdbms\DBConnRef::FLD_INDEX = 0 |
Definition at line 23 of file DBConnRef.php.