A single concrete connection to a relational database. More...
Inherits Stringable, Wikimedia\Rdbms\IDatabaseForOwner, Wikimedia\Rdbms\IMaintainableDatabase, and LoggerAwareInterface.
Inherited by Wikimedia\Rdbms\DatabaseMySQL, Wikimedia\Rdbms\DatabasePostgres, and Wikimedia\Rdbms\DatabaseSqlite.
__clone () Make sure that copies do not share the same client binding handle.buildLike()
that denotes a '_' to be used in a LIKE query.
buildLike()
that denotes a '' to be used in a LIKE query.
newSelectQueryBuilder
with SelectQueryBuilder::estimateRowCount
instead, which is more readable and less error-prone.
ConvertibleTimestamp
to the format used for inserting into timestamp fields in this DBMS.
A single concrete connection to a relational database.
This is the base class for all connection-specific relational database handles. No two instances of this class should share the same underlying network connection.
Definition at line 51 of file Database.php.
◆ __destruct() Wikimedia\Rdbms\Database::__destruct ( )Run a few simple checks and close dangling connections.
Definition at line 3216 of file Database.php.
◆ __clone() Wikimedia\Rdbms\Database::__clone ( )Make sure that copies do not share the same client binding handle.
Definition at line 3176 of file Database.php.
◆ __sleep() Wikimedia\Rdbms\Database::__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 3208 of file Database.php.
◆ __toString() Wikimedia\Rdbms\Database::__toString ( )Get a debugging string that mentions the database type, the ID of this instance, and the ID of any underlying connection resource or driver object if one is present.
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 3157 of file Database.php.
◆ addIdentifierQuotes() Wikimedia\Rdbms\Database::addIdentifierQuotes ( $s ) ◆ addQuotes() Wikimedia\Rdbms\Database::addQuotes ( $s ) ◆ affectedRows() Wikimedia\Rdbms\Database::affectedRows ( )Get the number of rows affected by the last query method call.
This method should only be called when all the following hold true:
In all other cases, the return value is unspecified.
UPDATE queries consider rows affected even when all their new column values match the previous values. Such rows can be excluded from the count by changing the WHERE clause to filter them out.
If the last query method call was to query() or queryMulti(), then the results are based on the (last) statement provided to that call and are driver-specific.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2552 of file Database.php.
◆ andExpr() Wikimedia\Rdbms\Database::andExpr ( array $conds )See Expression::__construct()
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 1585 of file Database.php.
◆ anyChar() Wikimedia\Rdbms\Database::anyChar ( ) ◆ anyString() Wikimedia\Rdbms\Database::anyString ( ) ◆ assertHasConnectionHandle() Wikimedia\Rdbms\Database::assertHasConnectionHandle ( ) finalprotectedMake sure there is an open connection handle (alive or not)
This guards against fatal errors to the binding handle not being defined in cases where open() was never called or close() was already called.
Definition at line 539 of file Database.php.
◆ begin() Wikimedia\Rdbms\Database::begin ( $fname = __METHOD__, $mode = self::TRANSACTION_EXPLICIT ) finalBegin a transaction.
Only call this from code with outer transaction 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.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2307 of file Database.php.
◆ bitAnd() Wikimedia\Rdbms\Database::bitAnd ( $fieldLeft, $fieldRight ) ◆ bitNot() Wikimedia\Rdbms\Database::bitNot ( $field ) ◆ bitOr() Wikimedia\Rdbms\Database::bitOr ( $fieldLeft, $fieldRight ) ◆ buildComparison() Wikimedia\Rdbms\Database::buildComparison ( string $op, array $conds )Build a condition comparing multiple values, for use with indexes that cover multiple fields, common when e.g.
paging through results or doing batch operations.
For example, you might be displaying a list of people ordered alphabetically by their last and first name, split across multiple pages. The first page of the results ended at Jane Doe. When building the query for the next page, you would use:
$queryBuilder->where( $db->buildComparison( '>', [ 'last' => 'Doe', 'first' => 'Jane' ] ) );
This will return people whose last name follows Doe, or whose last name is Doe and first name follows Jane.
Note that the order of keys in the associative array $conds is significant, and must match the order of fields used by the index.
When comparing a single value, prefer using the expression builder:
$db->expr( 'key', '<=', $val ) // equivalent to: $db->buildComparison( '<=', [ 'key' => $val ] ) 'key <= ' . $db->addQuotes( $val )
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3326 of file Database.php.
◆ buildConcat() Wikimedia\Rdbms\Database::buildConcat ( $stringList ) ◆ buildExcludedValue() Wikimedia\Rdbms\Database::buildExcludedValue ( $column )Build a reference to a column value from the conflicting proposed upsert() row.
The reference comes in the form of an alias, function, or parenthesized SQL expression. It can be used in upsert() SET expressions to handle the merging of column values between each conflicting pair of existing and proposed rows. Such proposed rows are said to have been "excluded" from insertion in favor of updating the existing row.
This is useful for multi-row upserts() since the proposed values cannot just be included as literals in the SET expressions.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3467 of file Database.php.
◆ buildGreatest() Wikimedia\Rdbms\Database::buildGreatest ( $fields, $values )Build a GREATEST function statement comparing columns/values.
Integer and float values in $values will not be quoted
If $fields is an array, then each value with a string key is treated as an expression (which must be manually quoted); such string keys do not appear in the SQL and are only descriptive aliases.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3358 of file Database.php.
◆ buildGroupConcatField() Wikimedia\Rdbms\Database::buildGroupConcatField ( $delim, $tables, $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.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3454 of file Database.php.
◆ buildIntegerCast() Wikimedia\Rdbms\Database::buildIntegerCast ( $field ) ◆ buildLeast() Wikimedia\Rdbms\Database::buildLeast ( $fields, $values )Build a LEAST function statement comparing columns/values.
Integer and float values in $values will not be quoted
If $fields is an array, then each value with a string key is treated as an expression (which must be manually quoted); such string keys do not appear in the SQL and are only descriptive aliases.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3362 of file Database.php.
◆ buildLike() Wikimedia\Rdbms\Database::buildLike ( $param, $params )LIKE statement wrapper.
This takes 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 the 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\Platform\ISQLPlatform.
Definition at line 3394 of file Database.php.
◆ buildSelectSubquery() Wikimedia\Rdbms\Database::buildSelectSubquery ( $tables, $vars, $conds = '', $fname = __METHOD__, $options = [], $join_conds = [] )Equivalent to IDatabase::selectSQLText() except wraps the result in Subquery.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3460 of file Database.php.
◆ buildStringCast() Wikimedia\Rdbms\Database::buildStringCast ( $field ) ◆ buildSubstring() Wikimedia\Rdbms\Database::buildSubstring ( $input, $startPosition, $length = null )Definition at line 3366 of file Database.php.
◆ cancelAtomic()Cancel an atomic section of SQL statements.
This will roll back only the statements executed since the start of the most recent atomic section, and close that section. If a transaction was open before the corresponding startAtomic() call, any statements before that call are not rolled back and the transaction remains open. If the corresponding startAtomic() implicitly started a transaction, that transaction is rolled back.
Note that a call to IDatabase::rollback() will also roll back any open atomic sections.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2215 of file Database.php.
◆ checkInsertWarnings() Wikimedia\Rdbms\Database::checkInsertWarnings ( Query $query, $fname ) protectedCheck for warnings after performing an INSERT query, and throw exceptions if necessary.
Reimplemented in Wikimedia\Rdbms\DatabaseMySQL.
Definition at line 1513 of file Database.php.
◆ clearFlag() Wikimedia\Rdbms\Database::clearFlag ( $flag, $remember = self::REMEMBER_NOTHING )Clear a flag for this connection.
Implements Wikimedia\Rdbms\Database\IDatabaseFlags.
Definition at line 3244 of file Database.php.
◆ close() Wikimedia\Rdbms\Database::close ( $fname = __METHOD__ ) final ◆ closeConnection() Wikimedia\Rdbms\Database::closeConnection ( ) abstractprotected ◆ commenceCriticalSection() Wikimedia\Rdbms\Database::commenceCriticalSection ( string $fname ) protectedDemark the start of a critical section of session/transaction state changes.
Use this to disable potentially DB handles due to corruption from highly unexpected exceptions (e.g. from zend timers or coding errors) preempting execution of methods.
Callers must demark completion of the critical section with completeCriticalSection(). Callers should handle DBError exceptions that do not cause object state corruption by catching them, calling completeCriticalSection(), and then rethrowing them.
$cs = $this->commenceCriticalSection( __METHOD__ );
try {
$this->completeCriticalSection( __METHOD__, $cs );
throw $expectedException;
}
try {
} catch ( DBError $trxError ) {
$this->completeCriticalSection( __METHOD__, $cs, $trxError );
throw $expectedException;
}
$this->completeCriticalSection( __METHOD__, $cs );
Definition at line 3091 of file Database.php.
◆ commit() Wikimedia\Rdbms\Database::commit ( $fname = __METHOD__, $flush = self::FLUSHING_ONE ) finalCommits a transaction previously started using begin()
If no transaction is in progress, a warning is issued.
Only call this from code with outer transaction scope. See https://www.mediawiki.org/wiki/Database_transactions for details. Nesting of transactions is not supported.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2350 of file Database.php.
◆ completeCriticalSection() Wikimedia\Rdbms\Database::completeCriticalSection ( string $fname, ?CriticalSectionScope $csm, ?Throwable $trxError = null ) protectedDemark the completion of a critical section of session/transaction state changes.
Definition at line 3134 of file Database.php.
◆ conditional() Wikimedia\Rdbms\Database::conditional ( $cond, $caseTrueExpression, $caseFalseExpression )Returns an SQL expression for a simple conditional.
This doesn't need to be overridden unless CASE isn't supported in the RDBMS.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3418 of file Database.php.
◆ connectionErrorLogger() Wikimedia\Rdbms\Database::connectionErrorLogger ( $errno, $errstr )Error handler for logging errors during database connection.
Definition at line 463 of file Database.php.
◆ databasesAreIndependent() Wikimedia\Rdbms\Database::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 logically separate, with different database users, requiring special mechanisms like postgres_fdw to "mount" foreign DBs. This is true even among DBs on the same server. Changing the selected database via selectDomain() requires a new connection.
Implements Wikimedia\Rdbms\IReadableDatabase.
Reimplemented in Wikimedia\Rdbms\DatabasePostgres, and Wikimedia\Rdbms\DatabaseSqlite.
Definition at line 1523 of file Database.php.
◆ dbSchema() Wikimedia\Rdbms\Database::dbSchema ( $schema = null )Get/set the db schema.
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 327 of file Database.php.
◆ decodeBlob() Wikimedia\Rdbms\Database::decodeBlob ( $b ) ◆ decodeExpiry() Wikimedia\Rdbms\Database::decodeExpiry ( $expiry, $format = TS_MW )Decode an expiry time into a DBMS independent format.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3442 of file Database.php.
◆ delete() Wikimedia\Rdbms\Database::delete ( $table, $conds, $fname = __METHOD__ )Delete all rows in a table that match a condition.
This operation will be seen by affectedRows()/insertId() as one query statement, regardless of how many statements are actually sent by the class implementation.
@phpcs:ignore Generic.Files.LineLength
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 1739 of file Database.php.
◆ deleteJoin() Wikimedia\Rdbms\Database::deleteJoin ( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = __METHOD__ )Delete all rows in a table that match a condition which includes a join.
For safety, an empty $conds will not delete everything. If you want to delete all rows where the join condition matches, set $conds=IDatabase::ALL_ROWS.
DO NOT put the join condition in $conds.
This operation will be seen by affectedRows()/insertId() as one query statement, regardless of how many statements are actually sent by the class implementation.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 1726 of file Database.php.
◆ doAtomicSection() Wikimedia\Rdbms\Database::doAtomicSection ( $fname, callable $callback, $cancelable = self::ATOMIC_NOT_CANCELABLE ) finalPerform an atomic section of reversible SQL statements from a callback.
The $callback takes the following arguments:
This will execute the callback inside a pair of startAtomic()/endAtomic() calls. If any exception occurs during execution of the callback, it will be handled as follows:
This method is convenient for letting calls to the caller of this method be wrapped in a try/catch blocks for exception types that imply that the caller failed but was able to properly discard the changes it made in the transaction. This method can be an alternative to explicit calls to startAtomic()/endAtomic()/cancelAtomic().
Example usage, "RecordStore::save" method:
$dbw->doAtomicSection( __METHOD__, function ( $dbw ) use ( $record ) {
$dbw->insert( 'records', $record->toArray(), __METHOD__ );
$path= $this->recordDirectory .
'/'. $dbw->insertId();
$this->blobStore->create(
$path, $record->getJSON() );
$dbw->onTransactionResolution(
function( $type ) use (
$path) {
if ( $type === IDatabase::TRIGGER_ROLLBACK ) {
$this->blobStore->delete(
$path);
}
},
__METHOD__
);
}, $dbw::ATOMIC_CANCELABLE );
Example usage, caller of the "RecordStore::save" method:
$dbw->startAtomic( __METHOD__ );
try {
$recordStore->save( $record );
} catch ( StoreFailureException $e ) {
}
$dbw->endAtomic( __METHOD__ );
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2286 of file Database.php.
◆ doBegin() Wikimedia\Rdbms\Database::doBegin ( $fname ) protected ◆ doFlushSession() Wikimedia\Rdbms\Database::doFlushSession ( $fname ) protected ◆ doHandleSessionLossPreconnect() Wikimedia\Rdbms\Database::doHandleSessionLossPreconnect ( ) protected ◆ doInsertSelectNative() Wikimedia\Rdbms\Database::doInsertSelectNative ( $destTable, $srcTable, array $varMap, $conds, $fname, array $insertOptions, array $selectOptions, $selectJoinConds ) protectedNative server-side implementation of insertSelect() for situations where we don't want to select everything into memory.
Reimplemented in Wikimedia\Rdbms\DatabasePostgres.
Definition at line 1882 of file Database.php.
◆ doLock() Wikimedia\Rdbms\Database::doLock ( string $lockName, string $method, int $timeout ) protected ◆ doLockIsFree() Wikimedia\Rdbms\Database::doLockIsFree ( string $lockName, string $method ) protected ◆ doSelectDomain() ◆ doSingleStatementQuery() Wikimedia\Rdbms\Database::doSingleStatementQuery ( string $sql ) abstractprotectedRun a query and return a QueryStatus instance with the query result information.
This is meant to handle the basic command of actually sending a query to the server via the driver. No implicit transaction, reconnection, nor retry logic should happen here. The higher level query() method is designed to handle those sorts of concerns. This method should not trigger such higher level methods.
The lastError() and lastErrno() methods should meaningfully reflect what error, if any, occurred during the last call to this method. Methods like executeQuery(), query(), select(), insert(), update(), delete(), and upsert() implement their calls to doQuery() such that an immediately subsequent call to lastError()/lastErrno() meaningfully reflects any error that occurred during that public query method call.
For SELECT queries, the result field contains either:
For non-SELECT queries, the result field contains either:
Reimplemented in Wikimedia\Rdbms\DatabaseMySQL, Wikimedia\Rdbms\DatabasePostgres, and Wikimedia\Rdbms\DatabaseSqlite.
References Wikimedia\Rdbms\Query\getVerb(), and Wikimedia\Rdbms\Query\getWriteTable().
◆ doUnlock() Wikimedia\Rdbms\Database::doUnlock ( string $lockName, string $method ) protected ◆ dropTable() Wikimedia\Rdbms\Database::dropTable ( $table, $fname = __METHOD__ )Delete a table.
Implements Wikimedia\Rdbms\IMaintainableDatabase.
Definition at line 2990 of file Database.php.
◆ duplicateTableStructure() Wikimedia\Rdbms\Database::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).
Implements Wikimedia\Rdbms\IMaintainableDatabase.
Reimplemented in Wikimedia\Rdbms\DatabaseMySQL, Wikimedia\Rdbms\DatabasePostgres, and Wikimedia\Rdbms\DatabaseSqlite.
Definition at line 2539 of file Database.php.
◆ encodeBlob() Wikimedia\Rdbms\Database::encodeBlob ( $b ) ◆ encodeExpiry() Wikimedia\Rdbms\Database::encodeExpiry ( $expiry ) ◆ endAtomic() Wikimedia\Rdbms\Database::endAtomic ( $fname = __METHOD__ ) finalEnds an atomic section of SQL statements.
Ends the next section of atomic SQL statements and commits the transaction if necessary.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2182 of file Database.php.
◆ estimateRowCount() Wikimedia\Rdbms\Database::estimateRowCount ( $tables, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = [] )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().New callers should use newSelectQueryBuilder
with SelectQueryBuilder::estimateRowCount
instead, which is more readable and less error-prone.
Implements Wikimedia\Rdbms\IReadableDatabase.
Reimplemented in Wikimedia\Rdbms\DatabasePostgres, and Wikimedia\Rdbms\DatabaseMySQL.
Definition at line 1391 of file Database.php.
◆ executeQuery() Wikimedia\Rdbms\Database::executeQuery ( $sql, $fname, $flags ) finalprotected ◆ explicitTrxActive() Wikimedia\Rdbms\Database::explicitTrxActive ( )Check whether there is a transaction open at the specific request of a caller.
Explicit transactions are spawned by begin(), startAtomic(), and doAtomicSection(). Note that explicit transactions should not be confused with explicit transaction rounds.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 3308 of file Database.php.
◆ expr() Wikimedia\Rdbms\Database::expr ( string $field, string $op, $value )See Expression::__construct()
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 1581 of file Database.php.
◆ factorConds() Wikimedia\Rdbms\Database::factorConds ( $condsArray )Given an array of condition arrays representing an OR list of AND lists, for example:
(A=1 AND B=2) OR (A=1 AND B=3)
produce an SQL expression in which the conditions are factored:
(A=1 AND (B=2 OR B=3))
We also use IN() to simplify further:
(A=1 AND (B IN (2,3))
More compactly, in boolean algebra notation, a sum of products, e.g. AB + AC is factored to produce A(B+C). Factoring proceeds recursively to reduce expressions with any number of variables, for example AEP + AEQ + AFP + AFQ = A(E(P+Q) + F(P+Q))
The algorithm is simple and will not necessarily find the shortest possible expression. For the best results, fields should be given in a consistent order, and the fields with values likely to be shared should be leftmost in the associative arrays.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3338 of file Database.php.
◆ fieldExists() Wikimedia\Rdbms\Database::fieldExists ( $table, $field, $fname = __METHOD__ )Determines whether a field exists in a table.
Implements Wikimedia\Rdbms\IMaintainableDatabase.
Definition at line 1462 of file Database.php.
◆ flushSession() Wikimedia\Rdbms\Database::flushSession ( $fname = __METHOD__, $flush = self::FLUSHING_ONE )Release important session-level state (named lock, table locks) as post-rollback cleanup.
This should only be called by a load balancer or if the handle is not attached to one. Also, there must be no chance that a future caller will still be expecting some of the lost session state.
Connection and query errors will be suppressed and logged
Implements Wikimedia\Rdbms\IDatabaseForOwner.
Definition at line 2455 of file Database.php.
◆ flushSnapshot() Wikimedia\Rdbms\Database::flushSnapshot ( $fname = __METHOD__, $flush = self::FLUSHING_ONE )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 server after waiting on replication to catch up to the primary server.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2522 of file Database.php.
◆ getAttributes() static Wikimedia\Rdbms\Database::getAttributes ( ) static ◆ getBindingHandle() Wikimedia\Rdbms\Database::getBindingHandle ( ) protectedGet the underlying binding connection handle.
Makes sure the connection resource is set (disconnects and ping() failure can unset it). This catches broken callers than catch and ignore disconnection exceptions. Unlike checking isOpen(), this is safe to call inside of open().
Reimplemented in Wikimedia\Rdbms\DatabasePostgres, and Wikimedia\Rdbms\DatabaseSqlite.
Definition at line 3044 of file Database.php.
◆ getCacheSetOptions() ◆ getDBname() Wikimedia\Rdbms\Database::getDBname ( ) ◆ getDomainID() Wikimedia\Rdbms\Database::getDomainID ( ) ◆ getFlag() Wikimedia\Rdbms\Database::getFlag ( $flag ) ◆ getInfinity() Wikimedia\Rdbms\Database::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\Platform\ISQLPlatform.
Definition at line 3434 of file Database.php.
◆ getInsertIdColumnForUpsert() Wikimedia\Rdbms\Database::getInsertIdColumnForUpsert ( $table ) protected ◆ getLag() Wikimedia\Rdbms\Database::getLag ( )Get the seconds of replication lag on this database server.
Callers should avoid using this method while a transaction is active
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 3486 of file Database.php.
◆ getLastPHPError() Wikimedia\Rdbms\Database::getLastPHPError ( ) protectedDefinition at line 444 of file Database.php.
◆ getLBInfo() Wikimedia\Rdbms\Database::getLBInfo ( $name = null )Get properties passed down from the server info array of the load balancer.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 350 of file Database.php.
◆ getLogContext() Wikimedia\Rdbms\Database::getLogContext ( array $extras = [] ) protected ◆ getPrimaryPos() Wikimedia\Rdbms\Database::getPrimaryPos ( )Get the replication position of this primary DB server.
Implements Wikimedia\Rdbms\IDatabaseForOwner.
Definition at line 3482 of file Database.php.
◆ getReadOnlyReason() Wikimedia\Rdbms\Database::getReadOnlyReason ( ) protectedDefinition at line 3019 of file Database.php.
◆ getScopedLockAndFlush() Wikimedia\Rdbms\Database::getScopedLockAndFlush ( $lockKey, $fname, $timeout )Acquire a named lock, flush any transaction, and return an RAII style unlocker object.
Only call this from outer transaction scope and when only one DB server will be affected. See https://www.mediawiki.org/wiki/Database_transactions for details.
This is suitable 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.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2955 of file Database.php.
References if.
◆ getServer() Wikimedia\Rdbms\Database::getServer ( ) ◆ getServerInfo() Wikimedia\Rdbms\Database::getServerInfo ( )Get a human-readable string describing the current software version.
Use getServerVersion() to get machine-friendly information.
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 308 of file Database.php.
◆ getServerName() Wikimedia\Rdbms\Database::getServerName ( ) ◆ getSessionLagStatus() Wikimedia\Rdbms\Database::getSessionLagStatus ( )Get a cached estimate of the seconds of replication lag on this database server, using the estimate obtained at the start of the current transaction if one 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 AUTOCOMMIT mode, this still gives an indication of the staleness of subsequent reads.
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 3490 of file Database.php.
◆ getTableAliases() Wikimedia\Rdbms\Database::getTableAliases ( ) ◆ getTransactionRoundFname() Wikimedia\Rdbms\Database::getTransactionRoundFname ( ) finalprotectedDefinition at line 392 of file Database.php.
◆ getValueTypesForWithClause() Wikimedia\Rdbms\Database::getValueTypesForWithClause ( $table ) protected ◆ implicitOrderby() Wikimedia\Rdbms\Database::implicitOrderby ( ) ◆ indexExists() Wikimedia\Rdbms\Database::indexExists ( $table, $index, $fname = __METHOD__ )Determines whether an index exists.
Implements Wikimedia\Rdbms\IMaintainableDatabase.
Definition at line 1470 of file Database.php.
◆ indexInfo() Wikimedia\Rdbms\Database::indexInfo ( $table, $index, $fname = __METHOD__ ) abstract ◆ indexUnique() Wikimedia\Rdbms\Database::indexUnique ( $table, $index, $fname = __METHOD__ )Determines if a given index is unique.
Implements Wikimedia\Rdbms\IMaintainableDatabase.
Definition at line 1476 of file Database.php.
◆ initConnection() Wikimedia\Rdbms\Database::initConnection ( ) final ◆ insert() Wikimedia\Rdbms\Database::insert ( $table, $rows, $fname = __METHOD__, $options = [] )Insert row(s) into a table, in the provided order.
This operation will be seen by affectedRows()/insertId() as one query statement, regardless of how many statements are actually sent by the class implementation.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 1493 of file Database.php.
◆ insertId() Wikimedia\Rdbms\Database::insertId ( )Get the sequence-based ID assigned by the last query method call.
This method should only be called when all the following hold true:
In all other cases, the return value is unspecified.
When the query method is either insert() with "IGNORE", upsert(), or insertSelect(), callers should first check affectedRows() before calling this method, making sure that the query method actually created a row. Otherwise, an ID from a previous insert might be incorrectly assumed to belong to last insert.
Implements Wikimedia\Rdbms\IDatabase.
Reimplemented in Wikimedia\Rdbms\DatabaseMySQL.
Definition at line 2558 of file Database.php.
◆ insertSelect() Wikimedia\Rdbms\Database::insertSelect ( $destTable, $srcTable, $varMap, $conds, $fname = __METHOD__, $insertOptions = [], $selectOptions = [], $selectJoinConds = [] ) finalINSERT SELECT wrapper.
This operation will be seen by affectedRows()/insertId() as one query statement, regardless of how many statements are actually sent by the class implementation.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 1745 of file Database.php.
◆ installErrorHandler() Wikimedia\Rdbms\Database::installErrorHandler ( ) protected ◆ isConnectionError() Wikimedia\Rdbms\Database::isConnectionError ( $errno ) protected ◆ isInsertSelectSafe() Wikimedia\Rdbms\Database::isInsertSelectSafe ( array $insertOptions, array $selectOptions, $fname ) protectedReimplemented in Wikimedia\Rdbms\DatabaseMySQL.
Definition at line 1796 of file Database.php.
◆ isKnownStatementRollbackError() Wikimedia\Rdbms\Database::isKnownStatementRollbackError ( $errno ) protected ◆ isOpen() Wikimedia\Rdbms\Database::isOpen ( ) ◆ isQueryTimeoutError() Wikimedia\Rdbms\Database::isQueryTimeoutError ( $errno ) protectedChecks whether the cause of the error is detected to be a timeout.
It returns false by default, and not all engines support detecting this yet. If this returns false, it will be treated as a generic query error.
Reimplemented in Wikimedia\Rdbms\DatabaseMySQL, and Wikimedia\Rdbms\DatabasePostgres.
Definition at line 1166 of file Database.php.
◆ isQuotedIdentifier() Wikimedia\Rdbms\Database::isQuotedIdentifier ( $name )Definition at line 3390 of file Database.php.
◆ isReadOnly() Wikimedia\Rdbms\Database::isReadOnly ( )Check if this DB server is marked as read-only according to load balancer info.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 3012 of file Database.php.
◆ lastDoneWrites() Wikimedia\Rdbms\Database::lastDoneWrites ( )Get the last time that the connection was used to commit a write.
Implements Wikimedia\Rdbms\IDatabaseForOwner.
Definition at line 376 of file Database.php.
◆ lastInsertId() Wikimedia\Rdbms\Database::lastInsertId ( ) abstractprotectedGet a row ID from the last insert statement to implicitly assign one within the session.
If the statement involved assigning sequence IDs to multiple rows, then the return value will be any one of those values (database-specific). If the statement was an "UPSERT" and some existing rows were updated, then the result will either reflect only IDs of created rows or it will reflect IDs of both created and updated rows (this is database-specific).
The result is unspecified if the statement gave an error.
Reimplemented in Wikimedia\Rdbms\DatabaseMySQL, Wikimedia\Rdbms\DatabasePostgres, and Wikimedia\Rdbms\DatabaseSqlite.
◆ limitResult() Wikimedia\Rdbms\Database::limitResult ( $sql, $limit, $offset = false )Construct a LIMIT query with optional offset.
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.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3406 of file Database.php.
◆ listTables() Wikimedia\Rdbms\Database::listTables ( $prefix = null, $fname = __METHOD__ ) ◆ lock() Wikimedia\Rdbms\Database::lock ( $lockName, $method, $timeout = 5, $flags = 0 )Acquire a named lock.Named locks are not related to transactions
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2883 of file Database.php.
◆ lockForUpdate() Wikimedia\Rdbms\Database::lockForUpdate ( $table, $conds = '', $fname = __METHOD__, $options = [], $join_conds = [] )Lock all rows meeting the given conditions/options FOR UPDATE.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 1446 of file Database.php.
◆ lockIsFree() Wikimedia\Rdbms\Database::lockIsFree ( $lockName, $method )Check to see if a named lock is not locked by any thread (non-blocking)
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2855 of file Database.php.
◆ makeList() Wikimedia\Rdbms\Database::makeList ( array $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 ({
Example usage:
$sql = $db->makeList( [
'rev_page' => $id,
$db->makeList( [ 'rev_minor' => 1, 'rev_len < 500' ], $db::LIST_OR )
], $db::LIST_AND );
This would set $sql to "rev_page = '$id' AND (rev_minor = 1 OR rev_len < 500)"
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3330 of file Database.php.
◆ makeWhereFrom2d() Wikimedia\Rdbms\Database::makeWhereFrom2d ( $data, $baseKey, $subKey )Build a "OR" condition with pairs from a two-dimensional array.
The associative array should have integer keys relating to the $baseKey field. The nested array should have string keys for the $subKey field. The inner values are ignored, and are typically boolean true.
Example usage:
$data = [
2 => [
'Foo' => true,
'Bar' => true,
],
3 => [
'Quux' => true,
],
];
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3334 of file Database.php.
◆ newDeleteQueryBuilder() Wikimedia\Rdbms\Database::newDeleteQueryBuilder ( ) ◆ newExceptionAfterConnectError() Wikimedia\Rdbms\Database::newExceptionAfterConnectError ( $error ) finalprotected ◆ newInsertQueryBuilder() Wikimedia\Rdbms\Database::newInsertQueryBuilder ( ) ◆ newReplaceQueryBuilder() Wikimedia\Rdbms\Database::newReplaceQueryBuilder ( ) ◆ newSelectQueryBuilder() Wikimedia\Rdbms\Database::newSelectQueryBuilder ( ) ◆ newUnionQueryBuilder() Wikimedia\Rdbms\Database::newUnionQueryBuilder ( ) ◆ newUpdateQueryBuilder() Wikimedia\Rdbms\Database::newUpdateQueryBuilder ( ) ◆ onTransactionCommitOrIdle() Wikimedia\Rdbms\Database::onTransactionCommitOrIdle ( callable $callback, $fname = __METHOD__ ) finalRun a callback when 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.
When transaction round mode (DBO_TRX) is set, the callback will run at the end of the round, just after all peer transactions COMMIT. If the transaction round is rolled back, then the callback is cancelled.
This IDatabase instance will start off in auto-commit mode when the callback starts. The use of other IDatabase handles from the callback should be avoided unless they are known to be in auto-commit mode. Callbacks that create transactions via begin() or startAtomic() must have matching calls to commit()/endAtomic().
Use this method only for the following purposes:
The callback takes the following arguments:
Callbacks will execute in the order they were enqueued.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 1944 of file Database.php.
◆ onTransactionPreCommitOrIdle() Wikimedia\Rdbms\Database::onTransactionPreCommitOrIdle ( callable $callback, $fname = __METHOD__ ) finalRun 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.
When transaction round mode (DBO_TRX) is set, the callback will run at the end of the round, just after all peer transactions COMMIT. If the transaction round is rolled back, then the callback is cancelled.
If there is no current transaction, one will be created to wrap the callback. Callbacks cannot use begin()/commit() to manage transactions. The use of other IDatabase handles from the callback should be avoided.
Use this method only for the following purposes:
Callbacks will execute in the order they were enqueued.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 1962 of file Database.php.
◆ onTransactionResolution() Wikimedia\Rdbms\Database::onTransactionResolution ( callable $callback, $fname = __METHOD__ ) finalRun a callback when the current transaction commits or rolls back.
An error is thrown if no transaction is pending.
When transaction round mode (DBO_TRX) is set, the callback will run at the end of the round, just after all peer transactions COMMIT/ROLLBACK.
This IDatabase instance will start off in auto-commit mode when the callback starts. The use of other IDatabase handles from the callback should be avoided unless they are known to be in auto-commit mode. Callbacks that create transactions via begin() or startAtomic() must have matching calls to commit()/endAtomic().
Use this method only for the following purposes:
The callback takes the following arguments:
Callbacks will execute in the order they were enqueued.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 1940 of file Database.php.
◆ open() Wikimedia\Rdbms\Database::open ( $server, $user, $password, $db, $schema, $tablePrefix ) abstractprotected ◆ orExpr() Wikimedia\Rdbms\Database::orExpr ( array $conds )See Expression::__construct()
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 1589 of file Database.php.
◆ pendingWriteAndCallbackCallers() Wikimedia\Rdbms\Database::pendingWriteAndCallbackCallers ( )Definition at line 3297 of file Database.php.
◆ pendingWriteCallers() Wikimedia\Rdbms\Database::pendingWriteCallers ( ) ◆ pendingWriteQueryDuration() Wikimedia\Rdbms\Database::pendingWriteQueryDuration ( $type = self::ESTIMATE_TOTAL )Get the time spend running write queries for this transaction.
High values could be due to scanning, updates, locking, and such.
Implements Wikimedia\Rdbms\IDatabaseForOwner.
Definition at line 3286 of file Database.php.
◆ ping() Wikimedia\Rdbms\Database::ping ( ) ◆ primaryPosWait() Wikimedia\Rdbms\Database::primaryPosWait ( DBPrimaryPos $pos, $timeout )Wait for the replica server to catch up to a given primary server position.
Note that this does not start any new transactions.
Callers might want to flush any existing transaction before invoking this method. Upon success, this assures that replica server queries will reflect all changes up to the given position, without interference from prior REPEATABLE-READ snapshots.
Implements Wikimedia\Rdbms\IDatabaseForOwner.
Definition at line 3478 of file Database.php.
◆ query() Wikimedia\Rdbms\Database::query ( $sql, $fname = __METHOD__, $flags = 0 )Run an SQL query statement and return the result.
If a connection loss is detected, then an attempt to reconnect will be made. For queries that involve no larger transactions or locks, they will be re-issued for convenience, provided the connection was re-established.
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.
Callers should avoid the use of statements like BEGIN, COMMIT, and ROLLBACK. Methods like startAtomic(), endAtomic(), and cancelAtomic() can be used instead.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 626 of file Database.php.
References Wikimedia\Rdbms\QueryBuilderFromRawSql\buildQuery().
Referenced by Wikimedia\Rdbms\PostgresField\fromText(), Wikimedia\Rdbms\DatabasePostgres\open(), and Wikimedia\Rdbms\DatabaseSqlite\open().
◆ registerTempTables() Wikimedia\Rdbms\Database::registerTempTables ( Query $query ) protected ◆ replace() Wikimedia\Rdbms\Database::replace ( $table, $uniqueKeys, $rows, $fname = __METHOD__ )Insert row(s) into a table, in the provided order, while deleting conflicting rows.
Conflicts are determined by the provided unique indexes. Note that it is possible for the provided rows to conflict even among themselves; it is preferable for the caller to de-duplicate such input beforehand.
Note some important implications of the deletion semantics:
This operation will be seen by affectedRows()/insertId() as one query statement, regardless of how many statements are actually sent by the class implementation.
Implements Wikimedia\Rdbms\IDatabase.
Reimplemented in Wikimedia\Rdbms\DatabaseMySQL, and Wikimedia\Rdbms\DatabaseSqlite.
Definition at line 1593 of file Database.php.
◆ replaceLostConnection() Wikimedia\Rdbms\Database::replaceLostConnection ( $lastErrno, $fname ) protectedClose any existing (dead) database connection and open a new connection.
Definition at line 2617 of file Database.php.
◆ reportQueryError() Wikimedia\Rdbms\Database::reportQueryError ( $error, $errno, $sql, $fname, $ignore = false ) ◆ restoreErrorHandler() Wikimedia\Rdbms\Database::restoreErrorHandler ( ) protected ◆ restoreFlags() Wikimedia\Rdbms\Database::restoreFlags ( $state = self::RESTORE_PRIOR ) ◆ rollback() Wikimedia\Rdbms\Database::rollback ( $fname = __METHOD__, $flush = self::FLUSHING_ONE ) finalRollback a transaction previously started using begin()
Only call this from code with outer transaction 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 preferable, using a pre-installed error handler to trigger rollback (in any case, failure to issue COMMIT will cause rollback server-side).
Query, connection, and onTransaction* callback errors will be suppressed and logged.
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2387 of file Database.php.
◆ runOnTransactionIdleCallbacks() Wikimedia\Rdbms\Database::runOnTransactionIdleCallbacks ( $trigger, array & $errors = [] )Consume and run any "on transaction idle/resolution" callbacks.
Definition at line 2019 of file Database.php.
◆ runOnTransactionPreCommitCallbacks() Wikimedia\Rdbms\Database::runOnTransactionPreCommitCallbacks ( )Definition at line 3304 of file Database.php.
◆ runTransactionListenerCallbacks() Wikimedia\Rdbms\Database::runTransactionListenerCallbacks ( $trigger, array & $errors = [] )Actually run any "transaction listener" callbacks.
Definition at line 2074 of file Database.php.
◆ select() Wikimedia\Rdbms\Database::select ( $tables, $vars, $conds = '', $fname = __METHOD__, $options = [], $join_conds = [] )Execute a SELECT query constructed using the various parameters provided.
New callers should use newSelectQueryBuilder
with SelectQueryBuilder::fetchResultSet
instead, which is more readable and less error-prone.
Each table reference assigns a table name to a specified collection of rows for the context of the query (e.g. field expressions, WHERE clause, GROUP BY clause, HAVING clause, ect...). Use of multiple table references implies a JOIN.
If a string is given, it must hold the name of the table having the specified collection of rows. If an array is given, each entry must be one of the following:
String keys allow table aliases to 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).
A derived table, defined by the result of selectSQLText(), requires an alias key and a Subquery instance value which wraps the SQL query, for example:
[ 'c' => new Subquery( 'SELECT ...' ) ]
Joins using parentheses for grouping (since MediaWiki 1.31) may be constructed using nested arrays. For example,
[ 'tableA', 'nestedB' => [ 'tableB', 'b2' => 'tableB2' ] ]
along with $join_conds
like
[ 'b2' => [ 'JOIN', 'b_id = b2_id' ], 'nestedB' => [ 'LEFT JOIN', 'b_a = a_id' ] ]
will produce SQL something like
FROM tableA LEFT JOIN (tableB JOIN tableB2 AS b2 ON (b_id = b2_id)) ON (b_a = a_id)
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.
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.
@phpcs:ignore Generic.Files.LineLength
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()
Use an empty array, string, or IDatabase::ALL_ROWS to select all rows.
You can put simple join conditions here, but this is strongly discouraged. Instead of
// $conds... 'rev_actor = actor_id',
use (see below for $join_conds):
// $join_conds... 'actor' => [ 'JOIN', 'rev_actor = actor_id' ],
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:
Optional associative array of table-specific join conditions. Simple conditions can also be specified in the regular $conds, but this is strongly discouraged in favor of the more explicit syntax here.
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\IReadableDatabase.
Definition at line 1354 of file Database.php.
◆ selectDomain() Wikimedia\Rdbms\Database::selectDomain ( $domain ) finalSet the current domain (database, schema, and table prefix)
This will throw an error for some database types if the database is unspecified
This should only be called by a load balancer or if the handle is not attached to one
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 1527 of file Database.php.
◆ selectField() Wikimedia\Rdbms\Database::selectField ( $tables, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = [] )A SELECT wrapper which returns a single field from a single result row.
If no result rows are returned from the query, false is returned.
New callers should use newSelectQueryBuilder
with SelectQueryBuilder::fetchField
instead, which is more readable and less error-prone.
@phpcs:ignore Generic.Files.LineLength
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 1306 of file Database.php.
◆ selectFieldValues() Wikimedia\Rdbms\Database::selectFieldValues ( $tables, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = [] )A SELECT wrapper which returns a list of single field values from result rows.
If no result rows are returned from the query, an empty array is returned.
New callers should use newSelectQueryBuilder
with SelectQueryBuilder::fetchFieldValues
instead, which is more readable and less error-prone.
@phpcs:ignore Generic.Files.LineLength
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 1331 of file Database.php.
◆ selectRow() Wikimedia\Rdbms\Database::selectRow ( $tables, $vars, $conds, $fname = __METHOD__, $options = [], $join_conds = [] )Wrapper to IDatabase::select() that only fetches one row (via LIMIT)
If the query returns no rows, false is returned.
This method is convenient for fetching a row based on a unique key condition.
New callers should use newSelectQueryBuilder
with SelectQueryBuilder::fetchRow
instead, which is more readable and less error-prone.
@phpcs:ignore Generic.Files.LineLength
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 1370 of file Database.php.
◆ selectRowCount() Wikimedia\Rdbms\Database::selectRowCount ( $tables, $var = ' *', $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().
New callers should use newSelectQueryBuilder
with SelectQueryBuilder::fetchRowCount
instead, which is more readable and less error-prone.
@phpcs:ignore Generic.Files.LineLength
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 1408 of file Database.php.
◆ selectSQLText() Wikimedia\Rdbms\Database::selectSQLText ( $tables, $vars, $conds = '', $fname = __METHOD__, $options = [], $join_conds = [] )Take the same arguments as IDatabase::select() and return the SQL it would use.
This can be useful for making UNION queries, where the SQL text of each query is needed. In general, however, callers outside of Database classes should just use select().
@phpcs:ignore Generic.Files.LineLength
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Reimplemented in Wikimedia\Rdbms\DatabaseMySQL.
Definition at line 3320 of file Database.php.
◆ serverIsReadOnly() Wikimedia\Rdbms\Database::serverIsReadOnly ( ) ◆ sessionLocksPending() Wikimedia\Rdbms\Database::sessionLocksPending ( )Definition at line 385 of file Database.php.
◆ setFlag() Wikimedia\Rdbms\Database::setFlag ( $flag, $remember = self::REMEMBER_NOTHING )Set a flag for this connection.
Implements Wikimedia\Rdbms\Database\IDatabaseFlags.
Definition at line 3240 of file Database.php.
◆ setLBInfo() Wikimedia\Rdbms\Database::setLBInfo ( $nameOrArray, $value = null )Set the entire array or a particular key of the managing load balancer info array.
Keys matching the IDatabase::LB_* constants are also used internally by subclasses
Implements Wikimedia\Rdbms\IDatabaseForOwner.
Definition at line 362 of file Database.php.
Referenced by Wikimedia\Rdbms\LoadBalancerSingle\__construct().
◆ setLogger() Wikimedia\Rdbms\Database::setLogger ( LoggerInterface $logger )Set the PSR-3 logger interface to use.
Definition at line 304 of file Database.php.
◆ setSchemaVars() Wikimedia\Rdbms\Database::setSchemaVars ( $vars )Set schema variables to be used when streaming commands from SQL files or stdin.
Variables appear as SQL comments and are substituted by their corresponding values
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3471 of file Database.php.
◆ setSessionOptions() Wikimedia\Rdbms\Database::setSessionOptions ( array $options )Override database's default behavior.
Not all options are supported on all database backends; unsupported options are silently ignored.
$options include:
Implements Wikimedia\Rdbms\IDatabase.
Reimplemented in Wikimedia\Rdbms\DatabaseMySQL.
Definition at line 2724 of file Database.php.
◆ setTableAliases() Wikimedia\Rdbms\Database::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.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Reimplemented in Wikimedia\Rdbms\DatabaseSqlite.
Definition at line 3446 of file Database.php.
◆ setTransactionListener() Wikimedia\Rdbms\Database::setTransactionListener ( $name, ?callable $callback = null ) finalRun a callback after each time any transaction commits or rolls back.
The callback takes two arguments:
Registering a callback here will not affect writesOrCallbacks() pending.
Since callbacks from this or onTransactionCommitOrIdle() can start and end transactions, a single call to IDatabase::commit might trigger multiple runs of the listener callbacks.
Implements Wikimedia\Rdbms\IDatabaseForOwner.
Definition at line 1991 of file Database.php.
◆ setTransactionManager() Wikimedia\Rdbms\Database::setTransactionManager ( TransactionManager $transactionManager )Definition at line 2451 of file Database.php.
◆ setTrxEndCallbackSuppression() Wikimedia\Rdbms\Database::setTrxEndCallbackSuppression ( $suppress ) finalWhether to disable running of post-COMMIT/ROLLBACK callbacks.
Definition at line 2003 of file Database.php.
◆ sourceFile() Wikimedia\Rdbms\Database::sourceFile ( $filename, ?callable $lineCallback = null, ?callable $resultCallback = null, $fname = false, ?callable $inputCallback = null )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).
Implements Wikimedia\Rdbms\IMaintainableDatabase.
Definition at line 2727 of file Database.php.
◆ sourceStream() Wikimedia\Rdbms\Database::sourceStream ( $fp, ?callable $lineCallback = null, ?callable $resultCallback = null, $fname = __METHOD__, ?callable $inputCallback = null )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).
Implements Wikimedia\Rdbms\IMaintainableDatabase.
Definition at line 2759 of file Database.php.
◆ startAtomic() Wikimedia\Rdbms\Database::startAtomic ( $fname = __METHOD__, $cancelable = self::ATOMIC_NOT_CANCELABLE ) finalBegin an atomic section of SQL statements.
Start an implicit transaction if no transaction is already active, set a savepoint (if $cancelable is ATOMIC_CANCELABLE), and track the given section name to enforce that the transaction is not committed prematurely. The end of the section must be signified exactly once, either by endAtomic() or cancelAtomic(). Sections can have have layers of inner sections (sub-sections), but all sections must be ended in order of innermost to outermost. Transactions cannot be started or committed until all atomic sections are closed.
ATOMIC_CANCELABLE is useful when the caller needs to handle specific failure cases by discarding the section's writes. This should not be used for failures when:
Example usage:
$dbw->startAtomic( __METHOD__ );
$dbw->select( 'thread', '1', [ 'td_id' => $tid ], __METHOD__, 'FOR UPDATE' );
$dbw->insert( 'comment', $row, __METHOD__ );
$cid = $db->insertId();
$dbw->update( 'thread', [ 'td_latest' => $cid ], [ 'td_id' => $tid ], __METHOD__ );
$dbw->endAtomic( __METHOD__ );
Example usage (atomic changes that might have to be discarded):
$sectionId = $dbw->startAtomic( __METHOD__, $dbw::ATOMIC_CANCELABLE );
$dbw->insert( 'records', $row, __METHOD__ );
$path= $recordDirectory .
'/'. $dbw->insertId();
$status = $fileBackend->create( [
'dst'=>
$path,
'content'=> $data ] );
if ( $status->isOK() ) {
$dbw->onTransactionResolution(
function( $type ) use ( $fileBackend,
$path) {
if ( $type === IDatabase::TRIGGER_ROLLBACK ) {
$fileBackend->delete( [
'src'=>
$path] );
}
},
__METHOD__
);
$dbw->endAtomic( __METHOD__ );
} else {
$dbw->cancelAtomic( __METHOD__, $sectionId );
}
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2120 of file Database.php.
◆ streamStatementEnd() Wikimedia\Rdbms\Database::streamStatementEnd ( & $sql, & $newLine ) ◆ strencode() Wikimedia\Rdbms\Database::strencode ( $s ) abstract ◆ strreplace() Wikimedia\Rdbms\Database::strreplace ( $orig, $old, $new )Returns a SQL expression for simple string replacement (e.g.
REPLACE() in mysql)
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3422 of file Database.php.
◆ tableExists() Wikimedia\Rdbms\Database::tableExists ( $table, $fname = __METHOD__ ) abstract ◆ tableName() Wikimedia\Rdbms\Database::tableName ( string $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.
The provided name should not qualify the database nor the schema, unless the name is of the form "information_schema.<identifier>". Unlike information_schema tables, regular tables can receive writes and are subject to configuration regarding table aliases, virtual domains, and LBFactory sharding. Callers needing to access remote databases should use appropriate connection factory methods.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3378 of file Database.php.
Referenced by Wikimedia\Rdbms\PostgresField\fromText().
◆ tableNamesN() Wikimedia\Rdbms\Database::tableNamesN ( $tables )Fetch a number of table names into a zero-indexed numerical array.
Much like tableName()
, this is only needed when calling query()
directly. You should prefer calling other methods, or using SelectQueryBuilder
.
Theoretical example (which really does not require raw SQL):
[ $user, $watchlist ] = $dbr->tableNamesN( 'user', 'watchlist' );
$sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
tableName
.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3382 of file Database.php.
◆ tablePrefix() Wikimedia\Rdbms\Database::tablePrefix ( $prefix = null )Get/set the table prefix.
Implements Wikimedia\Rdbms\IReadableDatabase.
Definition at line 312 of file Database.php.
◆ timestamp() Wikimedia\Rdbms\Database::timestamp ( $ts = 0 )Convert a timestamp in one of the formats accepted by ConvertibleTimestamp
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.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3426 of file Database.php.
◆ timestampOrNull() Wikimedia\Rdbms\Database::timestampOrNull ( $ts = null )Convert a timestamp in one of the formats accepted by ConvertibleTimestamp 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.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3430 of file Database.php.
◆ truncateTable() Wikimedia\Rdbms\Database::truncateTable ( $table, $fname = __METHOD__ ) ◆ trxLevel() Wikimedia\Rdbms\Database::trxLevel ( ) finalGets 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 3260 of file Database.php.
◆ trxStatus() Wikimedia\Rdbms\Database::trxStatus ( )Definition at line 3274 of file Database.php.
◆ trxTimestamp() Wikimedia\Rdbms\Database::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. Callers can assume that if a view-snapshot isolation is used, then the data read by SQL queries is at least up to date to that point (possibly more up-to-date since the first SELECT defines the snapshot).
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 3270 of file Database.php.
◆ unionQueries() Wikimedia\Rdbms\Database::unionQueries ( $sqls, $all, $options = [] )Construct a UNION query.
This is used for providing overload point for other DB abstractions not compatible with the MySQL syntax.
Implements Wikimedia\Rdbms\Platform\ISQLPlatform.
Definition at line 3414 of file Database.php.
◆ unionSupportsOrderAndLimit() Wikimedia\Rdbms\Database::unionSupportsOrderAndLimit ( ) ◆ unlock() Wikimedia\Rdbms\Database::unlock ( $lockName, $method )Release a lock.Named locks are not related to transactions
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 2921 of file Database.php.
◆ update() Wikimedia\Rdbms\Database::update ( $table, $set, $conds, $fname = __METHOD__, $options = [] )Update all rows in a table that match a given condition.
This operation will be seen by affectedRows()/insertId() as one query statement, regardless of how many statements are actually sent by the class implementation.
@phpcs:ignore Generic.Files.LineLength
Implements Wikimedia\Rdbms\IDatabase.
Definition at line 1516 of file Database.php.
◆ upsert() Wikimedia\Rdbms\Database::upsert ( $table, array $rows, $uniqueKeys, array $set, $fname = __METHOD__ )Upsert row(s) into a table, in the provided order, while updating conflicting rows.
Conflicts are determined by the provided unique indexes. Note that it is possible for the provided rows to conflict even among themselves; it is preferable for the caller to de-duplicate such input beforehand.
This operation will be seen by affectedRows()/insertId() as one query statement, regardless of how many statements are actually sent by the class implementation.
Implements Wikimedia\Rdbms\IDatabase.
Reimplemented in Wikimedia\Rdbms\DatabaseMySQL.
Definition at line 1624 of file Database.php.
◆ writesOrCallbacksPending() Wikimedia\Rdbms\Database::writesOrCallbacksPending ( )Whether there is a transaction open with either possible write queries or unresolved pre-commit/commit/resolution callbacks pending.
This does not count recurring callbacks, e.g. from setTransactionListener().
Implements Wikimedia\Rdbms\IDatabaseForOwner.
Definition at line 3282 of file Database.php.
◆ writesPending() Wikimedia\Rdbms\Database::writesPending ( ) ◆ $agent string Wikimedia\Rdbms\Database::$agent protectedAgent name for query profiling.
Definition at line 85 of file Database.php.
◆ $cliMode bool Wikimedia\Rdbms\Database::$cliMode protectedWhether this PHP instance is for a CLI script.
Definition at line 79 of file Database.php.
◆ $conn object resource null Wikimedia\Rdbms\Database::$conn protected ◆ $connectionParams array<string,mixed> Wikimedia\Rdbms\Database::$connectionParams protectedConnection parameters used by initConnection() and open()
Definition at line 87 of file Database.php.
◆ $connectionVariables string [] int [] float [] Wikimedia\Rdbms\Database::$connectionVariables protectedSQL variables values to use for all new connections.
Definition at line 89 of file Database.php.
◆ $connectTimeout int null Wikimedia\Rdbms\Database::$connectTimeout protectedMaximum seconds to wait on connection attempts.
Definition at line 81 of file Database.php.
◆ $csProvider CriticalSectionProvider null Wikimedia\Rdbms\Database::$csProvider protectedDefinition at line 53 of file Database.php.
◆ $currentDomain ◆ $delimiter string false Wikimedia\Rdbms\Database::$delimiter = ';' protected ◆ $deprecationLogger callable Wikimedia\Rdbms\Database::$deprecationLogger protectedDeprecation logging callback.
Definition at line 59 of file Database.php.
◆ $errorLogger callable Wikimedia\Rdbms\Database::$errorLogger protected ◆ $flags if (is_string($params[ 'sqlMode'] ?? null)) Wikimedia\Rdbms\Database::$flags = (int)$params['flags'] ◆ $flagsHolder ◆ $lbInfo array Wikimedia\Rdbms\Database::$lbInfo = [] protectedCurrent LoadBalancer tracking information.
Definition at line 98 of file Database.php.
◆ $logger LoggerInterface Wikimedia\Rdbms\Database::$logger protectedDefinition at line 55 of file Database.php.
◆ $nonNativeInsertSelectBatchSize int Wikimedia\Rdbms\Database::$nonNativeInsertSelectBatchSize protectedRow batch size to use for emulated INSERT SELECT queries.
Definition at line 91 of file Database.php.
◆ $profiler callable null Wikimedia\Rdbms\Database::$profiler protectedDefinition at line 61 of file Database.php.
◆ $receiveTimeout int null Wikimedia\Rdbms\Database::$receiveTimeout protectedMaximum seconds to wait on receiving query results.
Definition at line 83 of file Database.php.
◆ $serverName string null Wikimedia\Rdbms\Database::$serverName protectedReadable name or host/IP of the database server.
Definition at line 77 of file Database.php.
◆ $sessionNamedLocks array<string,array> Wikimedia\Rdbms\Database::$sessionNamedLocks = [] protectedMap of (lock name => (UNIX time,trx ID))
Definition at line 106 of file Database.php.
◆ $ssl bool Wikimedia\Rdbms\Database::$ssl protectedWhether to use SSL connections.
Definition at line 94 of file Database.php.
◆ $strictWarnings bool Wikimedia\Rdbms\Database::$strictWarnings protectedWhether to check for warnings.
Definition at line 96 of file Database.php.
◆ agent $this Wikimedia\Rdbms\Database::agent = (string)$params['agent']Definition at line 229 of file Database.php.
◆ cliMode $this Wikimedia\Rdbms\Database::cliMode = (bool)$params['cliMode']Definition at line 228 of file Database.php.
◆ connectionParams $this Wikimedia\Rdbms\Database::connectionParams Initial value:= [
self::CONN_HOST => ( isset( $params['host'] ) && $params['host'] !== '' )
? $params['host']
: null,
self::CONN_USER => ( isset( $params['user'] ) && $params['user'] !== '' )
? $params['user']
: null,
self::CONN_INITIAL_DB => ( isset( $params['dbname'] ) && $params['dbname'] !== '' )
? $params['dbname']
: null,
self::CONN_INITIAL_SCHEMA => ( isset( $params['schema'] ) && $params['schema'] !== '' )
? $params['schema']
: null,
self::CONN_PASSWORD => is_string( $params['password'] ) ? $params['password'] : null,
self::CONN_INITIAL_TABLE_PREFIX => (string)$params['tablePrefix']
]
Definition at line 200 of file Database.php.
Referenced by Wikimedia\Rdbms\DatabasePostgres\doSelectDomain(), and Wikimedia\Rdbms\Database\initConnection().
◆ connectionVariables $this Wikimedia\Rdbms\Database::connectionVariables = $params['variables'] ?? [] ◆ connectTimeout $this Wikimedia\Rdbms\Database::connectTimeout = $params['connectTimeout'] ?? nullDefinition at line 226 of file Database.php.
◆ csProvider $this Wikimedia\Rdbms\Database::csProvider = $params['criticalSectionProvider'] ?? nullDefinition at line 238 of file Database.php.
◆ currentDomain $this Wikimedia\Rdbms\Database::currentDomain ◆ deprecationLogger $this Wikimedia\Rdbms\Database::deprecationLogger = $params['deprecationLogger']Definition at line 236 of file Database.php.
◆ errorLogger $this Wikimedia\Rdbms\Database::errorLogger = $params['errorLogger'] ◆ flagsHolder $this Wikimedia\Rdbms\Database::flagsHolder = new DatabaseFlags( $flags ) ◆ lbInfo $this Wikimedia\Rdbms\Database::lbInfo = $params['lbInfo'] ?? []Definition at line 217 of file Database.php.
◆ nonNativeInsertSelectBatchSize $this Wikimedia\Rdbms\Database::nonNativeInsertSelectBatchSize = $params['nonNativeInsertSelectBatchSize'] ?? 10000Definition at line 231 of file Database.php.
◆ platform $this Wikimedia\Rdbms\Database::platform Initial value:= new SQLPlatform(
$this,
$this->logger,
$this->currentDomain,
$this->errorLogger
)
Definition at line 246 of file Database.php.
Referenced by Wikimedia\Rdbms\DatabaseMySQL\__construct(), Wikimedia\Rdbms\DatabasePostgres\__construct(), Wikimedia\Rdbms\DatabaseSqlite\__construct(), Wikimedia\Rdbms\DatabaseMySQL\doSelectDomain(), Wikimedia\Rdbms\DatabasePostgres\doSelectDomain(), Wikimedia\Rdbms\DatabaseMySQL\open(), Wikimedia\Rdbms\DatabasePostgres\open(), and Wikimedia\Rdbms\DatabaseSqlite\open().
◆ profiler $this Wikimedia\Rdbms\Database::profiler = is_callable( $params['profiler'] ) ? $params['profiler'] : nullDefinition at line 234 of file Database.php.
◆ receiveTimeout $this Wikimedia\Rdbms\Database::receiveTimeout = $params['receiveTimeout'] ?? nullDefinition at line 227 of file Database.php.
◆ serverName $this Wikimedia\Rdbms\Database::serverName = $params['serverName']Definition at line 230 of file Database.php.
◆ ssl $this Wikimedia\Rdbms\Database::ssl = $params['ssl'] ?? (bool)( $flags & self::DBO_SSL ) ◆ strictWarnings $this Wikimedia\Rdbms\Database::strictWarnings = !empty( $params['strictWarnings'] )Definition at line 232 of file Database.php.
◆ tracer ◆ transactionManager array<string,array<string, $sessionTempTables = []; protected int $lastQueryAffectedRows = 0; protected int|null $lastQueryInsertId; protected int|null $lastEmulatedAffectedRows; protected int|null $lastEmulatedInsertId; protected string $lastConnectError = ''; private float $lastPing = 0.0; private float|null $lastWriteTime; private string|false $lastPhpError = false; private int|null $csmId; private string|null $csmFname; private DBUnexpectedError|null $csmError; public const ATTR_DB_IS_FILE = 'db-is-file'; public const ATTR_DB_LEVEL_LOCKING = 'db-level-locking'; public const ATTR_SCHEMAS_AS_TABLE_GROUPS = 'supports-schemas'; public const NEW_UNCONNECTED = 0; public const NEW_CONNECTED = 1; protected const ERR_NONE = 0; protected const ERR_RETRY_QUERY = 1; protected const ERR_ABORT_QUERY = 2; protected const ERR_ABORT_TRX = 4; protected const ERR_ABORT_SESSION = 8; protected const DROPPED_CONN_BLAME_THRESHOLD_SEC = 3.0; = private const NOT_APPLICABLE 'n/a'; private const PING_TTL = 1.0; private const PING_QUERY = 'SELECT 1 AS ping'; protected const CONN_HOST = 'host'; protected const CONN_USER = 'user'; protected const CONN_PASSWORD = 'password'; protected const CONN_INITIAL_DB = 'dbname'; protected const CONN_INITIAL_SCHEMA = 'schema'; protected const CONN_INITIAL_TABLE_PREFIX = 'tablePrefix'; protected SQLPlatform $platform; protected ReplicationReporter $replicationReporter; public function __construct( array $params ) { $this->logger = $params['logger'] ?? new NullLogger(); $this-> Wikimedia\Rdbms\Database::transactionManager protected Initial value:= new TransactionManager(
$this->logger,
$params['trxProfiler']
)
TempTableInfo>> Map of (DB name => table name => info)
Definition at line 196 of file Database.php.
The documentation for this class was generated from the following file:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4