Remove DB2 support
[mediawiki.git] / includes / db / Database.php
blobff2f7f7593730783c36b35355a4f44d7822833f9
1 <?php
2 /**
3 * @defgroup Database Database
5 * This file deals with database interface functions
6 * and query specifics/optimisations.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
23 * @file
24 * @ingroup Database
27 /** Number of times to re-try an operation in case of deadlock */
28 define( 'DEADLOCK_TRIES', 4 );
29 /** Minimum time to wait before retry, in microseconds */
30 define( 'DEADLOCK_DELAY_MIN', 500000 );
31 /** Maximum time to wait before retry */
32 define( 'DEADLOCK_DELAY_MAX', 1500000 );
34 /**
35 * Base interface for all DBMS-specific code. At a bare minimum, all of the
36 * following must be implemented to support MediaWiki
38 * @file
39 * @ingroup Database
41 interface DatabaseType {
42 /**
43 * Get the type of the DBMS, as it appears in $wgDBtype.
45 * @return string
47 function getType();
49 /**
50 * Open a connection to the database. Usually aborts on failure
52 * @param $server String: database server host
53 * @param $user String: database user name
54 * @param $password String: database user password
55 * @param $dbName String: database name
56 * @return bool
57 * @throws DBConnectionError
59 function open( $server, $user, $password, $dbName );
61 /**
62 * Fetch the next row from the given result object, in object form.
63 * Fields can be retrieved with $row->fieldname, with fields acting like
64 * member variables.
65 * If no more rows are available, false is returned.
67 * @param $res ResultWrapper|object as returned from DatabaseBase::query(), etc.
68 * @return object|bool
69 * @throws DBUnexpectedError Thrown if the database returns an error
71 function fetchObject( $res );
73 /**
74 * Fetch the next row from the given result object, in associative array
75 * form. Fields are retrieved with $row['fieldname'].
76 * If no more rows are available, false is returned.
78 * @param $res ResultWrapper result object as returned from DatabaseBase::query(), etc.
79 * @return array|bool
80 * @throws DBUnexpectedError Thrown if the database returns an error
82 function fetchRow( $res );
84 /**
85 * Get the number of rows in a result object
87 * @param $res Mixed: A SQL result
88 * @return int
90 function numRows( $res );
92 /**
93 * Get the number of fields in a result object
94 * @see http://www.php.net/mysql_num_fields
96 * @param $res Mixed: A SQL result
97 * @return int
99 function numFields( $res );
102 * Get a field name in a result object
103 * @see http://www.php.net/mysql_field_name
105 * @param $res Mixed: A SQL result
106 * @param $n Integer
107 * @return string
109 function fieldName( $res, $n );
112 * Get the inserted value of an auto-increment row
114 * The value inserted should be fetched from nextSequenceValue()
116 * Example:
117 * $id = $dbw->nextSequenceValue( 'page_page_id_seq' );
118 * $dbw->insert( 'page', array( 'page_id' => $id ) );
119 * $id = $dbw->insertId();
121 * @return int
123 function insertId();
126 * Change the position of the cursor in a result object
127 * @see http://www.php.net/mysql_data_seek
129 * @param $res Mixed: A SQL result
130 * @param $row Mixed: Either MySQL row or ResultWrapper
132 function dataSeek( $res, $row );
135 * Get the last error number
136 * @see http://www.php.net/mysql_errno
138 * @return int
140 function lastErrno();
143 * Get a description of the last error
144 * @see http://www.php.net/mysql_error
146 * @return string
148 function lastError();
151 * mysql_fetch_field() wrapper
152 * Returns false if the field doesn't exist
154 * @param $table string: table name
155 * @param $field string: field name
157 * @return Field
159 function fieldInfo( $table, $field );
162 * Get information about an index into an object
163 * @param $table string: Table name
164 * @param $index string: Index name
165 * @param $fname string: Calling function name
166 * @return Mixed: Database-specific index description class or false if the index does not exist
168 function indexInfo( $table, $index, $fname = 'Database::indexInfo' );
171 * Get the number of rows affected by the last write query
172 * @see http://www.php.net/mysql_affected_rows
174 * @return int
176 function affectedRows();
179 * Wrapper for addslashes()
181 * @param $s string: to be slashed.
182 * @return string: slashed string.
184 function strencode( $s );
187 * Returns a wikitext link to the DB's website, e.g.,
188 * return "[http://www.mysql.com/ MySQL]";
189 * Should at least contain plain text, if for some reason
190 * your database has no website.
192 * @return string: wikitext of a link to the server software's web site
194 static function getSoftwareLink();
197 * A string describing the current software version, like from
198 * mysql_get_server_info().
200 * @return string: Version information from the database server.
202 function getServerVersion();
205 * A string describing the current software version, and possibly
206 * other details in a user-friendly way. Will be listed on Special:Version, etc.
207 * Use getServerVersion() to get machine-friendly information.
209 * @return string: Version information from the database server
211 function getServerInfo();
215 * Database abstraction object
216 * @ingroup Database
218 abstract class DatabaseBase implements DatabaseType {
220 # ------------------------------------------------------------------------------
221 # Variables
222 # ------------------------------------------------------------------------------
224 protected $mLastQuery = '';
225 protected $mDoneWrites = false;
226 protected $mPHPError = false;
228 protected $mServer, $mUser, $mPassword, $mDBname;
230 protected $mConn = null;
231 protected $mOpened = false;
234 * @since 1.20
235 * @var array of Closure
237 protected $mTrxIdleCallbacks = array();
239 protected $mTablePrefix;
240 protected $mFlags;
241 protected $mTrxLevel = 0;
242 protected $mErrorCount = 0;
243 protected $mLBInfo = array();
244 protected $mFakeSlaveLag = null, $mFakeMaster = false;
245 protected $mDefaultBigSelects = null;
246 protected $mSchemaVars = false;
248 protected $preparedArgs;
250 protected $htmlErrors;
252 protected $delimiter = ';';
255 * Remembers the function name given for starting the most recent transaction via begin().
256 * Used to provide additional context for error reporting.
258 * @var String
259 * @see DatabaseBase::mTrxLevel
261 private $mTrxFname = null;
264 * Record if possible write queries were done in the last transaction started
266 * @var Bool
267 * @see DatabaseBase::mTrxLevel
269 private $mTrxDoneWrites = false;
272 * Record if the current transaction was started implicitly due to DBO_TRX being set.
274 * @var Bool
275 * @see DatabaseBase::mTrxLevel
277 private $mTrxAutomatic = false;
280 * @since 1.21
281 * @var file handle for upgrade
283 protected $fileHandle = null;
286 # ------------------------------------------------------------------------------
287 # Accessors
288 # ------------------------------------------------------------------------------
289 # These optionally set a variable and return the previous state
292 * A string describing the current software version, and possibly
293 * other details in a user-friendly way. Will be listed on Special:Version, etc.
294 * Use getServerVersion() to get machine-friendly information.
296 * @return string: Version information from the database server
298 public function getServerInfo() {
299 return $this->getServerVersion();
303 * @return string: command delimiter used by this database engine
305 public function getDelimiter() {
306 return $this->delimiter;
310 * Boolean, controls output of large amounts of debug information.
311 * @param $debug bool|null
312 * - true to enable debugging
313 * - false to disable debugging
314 * - omitted or null to do nothing
316 * @return bool|null previous value of the flag
318 public function debug( $debug = null ) {
319 return wfSetBit( $this->mFlags, DBO_DEBUG, $debug );
323 * Turns buffering of SQL result sets on (true) or off (false). Default is
324 * "on".
326 * Unbuffered queries are very troublesome in MySQL:
328 * - If another query is executed while the first query is being read
329 * out, the first query is killed. This means you can't call normal
330 * MediaWiki functions while you are reading an unbuffered query result
331 * from a normal wfGetDB() connection.
333 * - Unbuffered queries cause the MySQL server to use large amounts of
334 * memory and to hold broad locks which block other queries.
336 * If you want to limit client-side memory, it's almost always better to
337 * split up queries into batches using a LIMIT clause than to switch off
338 * buffering.
340 * @param $buffer null|bool
342 * @return null|bool The previous value of the flag
344 public function bufferResults( $buffer = null ) {
345 if ( is_null( $buffer ) ) {
346 return !(bool)( $this->mFlags & DBO_NOBUFFER );
347 } else {
348 return !wfSetBit( $this->mFlags, DBO_NOBUFFER, !$buffer );
353 * Turns on (false) or off (true) the automatic generation and sending
354 * of a "we're sorry, but there has been a database error" page on
355 * database errors. Default is on (false). When turned off, the
356 * code should use lastErrno() and lastError() to handle the
357 * situation as appropriate.
359 * @param $ignoreErrors bool|null
361 * @return bool The previous value of the flag.
363 public function ignoreErrors( $ignoreErrors = null ) {
364 return wfSetBit( $this->mFlags, DBO_IGNORE, $ignoreErrors );
368 * Gets or sets the current transaction level.
370 * Historically, transactions were allowed to be "nested". This is no
371 * longer supported, so this function really only returns a boolean.
373 * @param $level int An integer (0 or 1), or omitted to leave it unchanged.
374 * @return int The previous value
376 public function trxLevel( $level = null ) {
377 return wfSetVar( $this->mTrxLevel, $level );
381 * Get/set the number of errors logged. Only useful when errors are ignored
382 * @param $count int The count to set, or omitted to leave it unchanged.
383 * @return int The error count
385 public function errorCount( $count = null ) {
386 return wfSetVar( $this->mErrorCount, $count );
390 * Get/set the table prefix.
391 * @param $prefix string The table prefix to set, or omitted to leave it unchanged.
392 * @return string The previous table prefix.
394 public function tablePrefix( $prefix = null ) {
395 return wfSetVar( $this->mTablePrefix, $prefix );
399 * Set the filehandle to copy write statements to.
401 * @param $fh filehandle
403 public function setFileHandle( $fh ) {
404 $this->fileHandle = $fh;
408 * Get properties passed down from the server info array of the load
409 * balancer.
411 * @param $name string The entry of the info array to get, or null to get the
412 * whole array
414 * @return LoadBalancer|null
416 public function getLBInfo( $name = null ) {
417 if ( is_null( $name ) ) {
418 return $this->mLBInfo;
419 } else {
420 if ( array_key_exists( $name, $this->mLBInfo ) ) {
421 return $this->mLBInfo[$name];
422 } else {
423 return null;
429 * Set the LB info array, or a member of it. If called with one parameter,
430 * the LB info array is set to that parameter. If it is called with two
431 * parameters, the member with the given name is set to the given value.
433 * @param $name
434 * @param $value
436 public function setLBInfo( $name, $value = null ) {
437 if ( is_null( $value ) ) {
438 $this->mLBInfo = $name;
439 } else {
440 $this->mLBInfo[$name] = $value;
445 * Set lag time in seconds for a fake slave
447 * @param $lag int
449 public function setFakeSlaveLag( $lag ) {
450 $this->mFakeSlaveLag = $lag;
454 * Make this connection a fake master
456 * @param $enabled bool
458 public function setFakeMaster( $enabled = true ) {
459 $this->mFakeMaster = $enabled;
463 * Returns true if this database supports (and uses) cascading deletes
465 * @return bool
467 public function cascadingDeletes() {
468 return false;
472 * Returns true if this database supports (and uses) triggers (e.g. on the page table)
474 * @return bool
476 public function cleanupTriggers() {
477 return false;
481 * Returns true if this database is strict about what can be put into an IP field.
482 * Specifically, it uses a NULL value instead of an empty string.
484 * @return bool
486 public function strictIPs() {
487 return false;
491 * Returns true if this database uses timestamps rather than integers
493 * @return bool
495 public function realTimestamps() {
496 return false;
500 * Returns true if this database does an implicit sort when doing GROUP BY
502 * @return bool
504 public function implicitGroupby() {
505 return true;
509 * Returns true if this database does an implicit order by when the column has an index
510 * For example: SELECT page_title FROM page LIMIT 1
512 * @return bool
514 public function implicitOrderby() {
515 return true;
519 * Returns true if this database can do a native search on IP columns
520 * e.g. this works as expected: .. WHERE rc_ip = '127.42.12.102/32';
522 * @return bool
524 public function searchableIPs() {
525 return false;
529 * Returns true if this database can use functional indexes
531 * @return bool
533 public function functionalIndexes() {
534 return false;
538 * Return the last query that went through DatabaseBase::query()
539 * @return String
541 public function lastQuery() {
542 return $this->mLastQuery;
546 * Returns true if the connection may have been used for write queries.
547 * Should return true if unsure.
549 * @return bool
551 public function doneWrites() {
552 return $this->mDoneWrites;
556 * Returns true if there is a transaction open with possible write
557 * queries or transaction idle callbacks waiting on it to finish.
559 * @return bool
561 public function writesOrCallbacksPending() {
562 return $this->mTrxLevel && ( $this->mTrxDoneWrites || $this->mTrxIdleCallbacks );
566 * Is a connection to the database open?
567 * @return Boolean
569 public function isOpen() {
570 return $this->mOpened;
574 * Set a flag for this connection
576 * @param $flag Integer: DBO_* constants from Defines.php:
577 * - DBO_DEBUG: output some debug info (same as debug())
578 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
579 * - DBO_IGNORE: ignore errors (same as ignoreErrors())
580 * - DBO_TRX: automatically start transactions
581 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
582 * and removes it in command line mode
583 * - DBO_PERSISTENT: use persistant database connection
585 public function setFlag( $flag ) {
586 global $wgDebugDBTransactions;
587 $this->mFlags |= $flag;
588 if ( ( $flag & DBO_TRX) & $wgDebugDBTransactions ) {
589 wfDebug( "Implicit transactions are now disabled.\n" );
594 * Clear a flag for this connection
596 * @param $flag: same as setFlag()'s $flag param
598 public function clearFlag( $flag ) {
599 global $wgDebugDBTransactions;
600 $this->mFlags &= ~$flag;
601 if ( ( $flag & DBO_TRX ) && $wgDebugDBTransactions ) {
602 wfDebug( "Implicit transactions are now disabled.\n" );
607 * Returns a boolean whether the flag $flag is set for this connection
609 * @param $flag: same as setFlag()'s $flag param
610 * @return Boolean
612 public function getFlag( $flag ) {
613 return !!( $this->mFlags & $flag );
617 * General read-only accessor
619 * @param $name string
621 * @return string
623 public function getProperty( $name ) {
624 return $this->$name;
628 * @return string
630 public function getWikiID() {
631 if ( $this->mTablePrefix ) {
632 return "{$this->mDBname}-{$this->mTablePrefix}";
633 } else {
634 return $this->mDBname;
639 * Return a path to the DBMS-specific schema file, otherwise default to tables.sql
641 * @return string
643 public function getSchemaPath() {
644 global $IP;
645 if ( file_exists( "$IP/maintenance/" . $this->getType() . "/tables.sql" ) ) {
646 return "$IP/maintenance/" . $this->getType() . "/tables.sql";
647 } else {
648 return "$IP/maintenance/tables.sql";
652 # ------------------------------------------------------------------------------
653 # Other functions
654 # ------------------------------------------------------------------------------
657 * Constructor.
658 * @param $server String: database server host
659 * @param $user String: database user name
660 * @param $password String: database user password
661 * @param $dbName String: database name
662 * @param $flags
663 * @param $tablePrefix String: database table prefixes. By default use the prefix gave in LocalSettings.php
665 function __construct( $server = false, $user = false, $password = false, $dbName = false,
666 $flags = 0, $tablePrefix = 'get from global'
668 global $wgDBprefix, $wgCommandLineMode, $wgDebugDBTransactions;
670 $this->mFlags = $flags;
672 if ( $this->mFlags & DBO_DEFAULT ) {
673 if ( $wgCommandLineMode ) {
674 $this->mFlags &= ~DBO_TRX;
675 if ( $wgDebugDBTransactions ) {
676 wfDebug( "Implicit transaction open disabled.\n" );
678 } else {
679 $this->mFlags |= DBO_TRX;
680 if ( $wgDebugDBTransactions ) {
681 wfDebug( "Implicit transaction open enabled.\n" );
686 /** Get the default table prefix*/
687 if ( $tablePrefix == 'get from global' ) {
688 $this->mTablePrefix = $wgDBprefix;
689 } else {
690 $this->mTablePrefix = $tablePrefix;
693 if ( $user ) {
694 $this->open( $server, $user, $password, $dbName );
699 * Called by serialize. Throw an exception when DB connection is serialized.
700 * This causes problems on some database engines because the connection is
701 * not restored on unserialize.
703 public function __sleep() {
704 throw new MWException( 'Database serialization may cause problems, since the connection is not restored on wakeup.' );
708 * Given a DB type, construct the name of the appropriate child class of
709 * DatabaseBase. This is designed to replace all of the manual stuff like:
710 * $class = 'Database' . ucfirst( strtolower( $type ) );
711 * as well as validate against the canonical list of DB types we have
713 * This factory function is mostly useful for when you need to connect to a
714 * database other than the MediaWiki default (such as for external auth,
715 * an extension, et cetera). Do not use this to connect to the MediaWiki
716 * database. Example uses in core:
717 * @see LoadBalancer::reallyOpenConnection()
718 * @see ExternalUser_MediaWiki::initFromCond()
719 * @see ForeignDBRepo::getMasterDB()
720 * @see WebInstaller_DBConnect::execute()
722 * @since 1.18
724 * @param $dbType String A possible DB type
725 * @param $p Array An array of options to pass to the constructor.
726 * Valid options are: host, user, password, dbname, flags, tablePrefix
727 * @return DatabaseBase subclass or null
729 final public static function factory( $dbType, $p = array() ) {
730 $canonicalDBTypes = array(
731 'mysql', 'postgres', 'sqlite', 'oracle', 'mssql'
733 $dbType = strtolower( $dbType );
734 $class = 'Database' . ucfirst( $dbType );
736 if( in_array( $dbType, $canonicalDBTypes ) || ( class_exists( $class ) && is_subclass_of( $class, 'DatabaseBase' ) ) ) {
737 return new $class(
738 isset( $p['host'] ) ? $p['host'] : false,
739 isset( $p['user'] ) ? $p['user'] : false,
740 isset( $p['password'] ) ? $p['password'] : false,
741 isset( $p['dbname'] ) ? $p['dbname'] : false,
742 isset( $p['flags'] ) ? $p['flags'] : 0,
743 isset( $p['tablePrefix'] ) ? $p['tablePrefix'] : 'get from global'
745 } else {
746 return null;
750 protected function installErrorHandler() {
751 $this->mPHPError = false;
752 $this->htmlErrors = ini_set( 'html_errors', '0' );
753 set_error_handler( array( $this, 'connectionErrorHandler' ) );
757 * @return bool|string
759 protected function restoreErrorHandler() {
760 restore_error_handler();
761 if ( $this->htmlErrors !== false ) {
762 ini_set( 'html_errors', $this->htmlErrors );
764 if ( $this->mPHPError ) {
765 $error = preg_replace( '!\[<a.*</a>\]!', '', $this->mPHPError );
766 $error = preg_replace( '!^.*?:\s?(.*)$!', '$1', $error );
767 return $error;
768 } else {
769 return false;
774 * @param $errno
775 * @param $errstr
777 protected function connectionErrorHandler( $errno, $errstr ) {
778 $this->mPHPError = $errstr;
782 * Closes a database connection.
783 * if it is open : commits any open transactions
785 * @throws MWException
786 * @return Bool operation success. true if already closed.
788 public function close() {
789 if ( count( $this->mTrxIdleCallbacks ) ) { // sanity
790 throw new MWException( "Transaction idle callbacks still pending." );
792 $this->mOpened = false;
793 if ( $this->mConn ) {
794 if ( $this->trxLevel() ) {
795 if ( !$this->mTrxAutomatic ) {
796 wfWarn( "Transaction still in progress (from {$this->mTrxFname}), " .
797 " performing implicit commit before closing connection!" );
800 $this->commit( __METHOD__, 'flush' );
803 $ret = $this->closeConnection();
804 $this->mConn = false;
805 return $ret;
806 } else {
807 return true;
812 * Closes underlying database connection
813 * @since 1.20
814 * @return bool: Whether connection was closed successfully
816 abstract protected function closeConnection();
819 * @param $error String: fallback error message, used if none is given by DB
820 * @throws DBConnectionError
822 function reportConnectionError( $error = 'Unknown error' ) {
823 $myError = $this->lastError();
824 if ( $myError ) {
825 $error = $myError;
828 # New method
829 throw new DBConnectionError( $this, $error );
833 * The DBMS-dependent part of query()
835 * @param $sql String: SQL query.
836 * @return ResultWrapper Result object to feed to fetchObject, fetchRow, ...; or false on failure
838 abstract protected function doQuery( $sql );
841 * Determine whether a query writes to the DB.
842 * Should return true if unsure.
844 * @param $sql string
846 * @return bool
848 public function isWriteQuery( $sql ) {
849 return !preg_match( '/^(?:SELECT|BEGIN|ROLLBACK|COMMIT|SET|SHOW|EXPLAIN|\(SELECT)\b/i', $sql );
853 * Run an SQL query and return the result. Normally throws a DBQueryError
854 * on failure. If errors are ignored, returns false instead.
856 * In new code, the query wrappers select(), insert(), update(), delete(),
857 * etc. should be used where possible, since they give much better DBMS
858 * independence and automatically quote or validate user input in a variety
859 * of contexts. This function is generally only useful for queries which are
860 * explicitly DBMS-dependent and are unsupported by the query wrappers, such
861 * as CREATE TABLE.
863 * However, the query wrappers themselves should call this function.
865 * @param $sql String: SQL query
866 * @param $fname String: Name of the calling function, for profiling/SHOW PROCESSLIST
867 * comment (you can use __METHOD__ or add some extra info)
868 * @param $tempIgnore Boolean: Whether to avoid throwing an exception on errors...
869 * maybe best to catch the exception instead?
870 * @throws MWException
871 * @return boolean|ResultWrapper. true for a successful write query, ResultWrapper object
872 * for a successful read query, or false on failure if $tempIgnore set
874 public function query( $sql, $fname = '', $tempIgnore = false ) {
875 $isMaster = !is_null( $this->getLBInfo( 'master' ) );
876 if ( !Profiler::instance()->isStub() ) {
877 # generalizeSQL will probably cut down the query to reasonable
878 # logging size most of the time. The substr is really just a sanity check.
880 if ( $isMaster ) {
881 $queryProf = 'query-m: ' . substr( DatabaseBase::generalizeSQL( $sql ), 0, 255 );
882 $totalProf = 'DatabaseBase::query-master';
883 } else {
884 $queryProf = 'query: ' . substr( DatabaseBase::generalizeSQL( $sql ), 0, 255 );
885 $totalProf = 'DatabaseBase::query';
888 wfProfileIn( $totalProf );
889 wfProfileIn( $queryProf );
892 $this->mLastQuery = $sql;
893 if ( !$this->mDoneWrites && $this->isWriteQuery( $sql ) ) {
894 # Set a flag indicating that writes have been done
895 wfDebug( __METHOD__ . ": Writes done: $sql\n" );
896 $this->mDoneWrites = true;
899 # Add a comment for easy SHOW PROCESSLIST interpretation
900 global $wgUser;
901 if ( is_object( $wgUser ) && $wgUser->isItemLoaded( 'name' ) ) {
902 $userName = $wgUser->getName();
903 if ( mb_strlen( $userName ) > 15 ) {
904 $userName = mb_substr( $userName, 0, 15 ) . '...';
906 $userName = str_replace( '/', '', $userName );
907 } else {
908 $userName = '';
911 // Add trace comment to the begin of the sql string, right after the operator.
912 // Or, for one-word queries (like "BEGIN" or COMMIT") add it to the end (bug 42598)
913 $commentedSql = preg_replace( '/\s|$/', " /* $fname $userName */ ", $sql, 1 );
915 # If DBO_TRX is set, start a transaction
916 if ( ( $this->mFlags & DBO_TRX ) && !$this->mTrxLevel &&
917 $sql != 'BEGIN' && $sql != 'COMMIT' && $sql != 'ROLLBACK' )
919 # Avoid establishing transactions for SHOW and SET statements too -
920 # that would delay transaction initializations to once connection
921 # is really used by application
922 $sqlstart = substr( $sql, 0, 10 ); // very much worth it, benchmark certified(tm)
923 if ( strpos( $sqlstart, "SHOW " ) !== 0 && strpos( $sqlstart, "SET " ) !== 0 ) {
924 global $wgDebugDBTransactions;
925 if ( $wgDebugDBTransactions ) {
926 wfDebug( "Implicit transaction start.\n" );
928 $this->begin( __METHOD__ . " ($fname)" );
929 $this->mTrxAutomatic = true;
933 # Keep track of whether the transaction has write queries pending
934 if ( $this->mTrxLevel && !$this->mTrxDoneWrites && $this->isWriteQuery( $sql ) ) {
935 $this->mTrxDoneWrites = true;
938 if ( $this->debug() ) {
939 static $cnt = 0;
941 $cnt++;
942 $sqlx = substr( $commentedSql, 0, 500 );
943 $sqlx = strtr( $sqlx, "\t\n", ' ' );
945 $master = $isMaster ? 'master' : 'slave';
946 wfDebug( "Query {$this->mDBname} ($cnt) ($master): $sqlx\n" );
949 if ( istainted( $sql ) & TC_MYSQL ) {
950 throw new MWException( 'Tainted query found' );
953 $queryId = MWDebug::query( $sql, $fname, $isMaster );
955 # Do the query and handle errors
956 $ret = $this->doQuery( $commentedSql );
958 MWDebug::queryTime( $queryId );
960 # Try reconnecting if the connection was lost
961 if ( false === $ret && $this->wasErrorReissuable() ) {
962 # Transaction is gone, like it or not
963 $this->mTrxLevel = 0;
964 $this->mTrxIdleCallbacks = array(); // cancel
965 wfDebug( "Connection lost, reconnecting...\n" );
967 if ( $this->ping() ) {
968 wfDebug( "Reconnected\n" );
969 $sqlx = substr( $commentedSql, 0, 500 );
970 $sqlx = strtr( $sqlx, "\t\n", ' ' );
971 global $wgRequestTime;
972 $elapsed = round( microtime( true ) - $wgRequestTime, 3 );
973 if ( $elapsed < 300 ) {
974 # Not a database error to lose a transaction after a minute or two
975 wfLogDBError( "Connection lost and reconnected after {$elapsed}s, query: $sqlx\n" );
977 $ret = $this->doQuery( $commentedSql );
978 } else {
979 wfDebug( "Failed\n" );
983 if ( false === $ret ) {
984 $this->reportQueryError( $this->lastError(), $this->lastErrno(), $sql, $fname, $tempIgnore );
987 if ( !Profiler::instance()->isStub() ) {
988 wfProfileOut( $queryProf );
989 wfProfileOut( $totalProf );
992 return $this->resultObject( $ret );
996 * Report a query error. Log the error, and if neither the object ignore
997 * flag nor the $tempIgnore flag is set, throw a DBQueryError.
999 * @param $error String
1000 * @param $errno Integer
1001 * @param $sql String
1002 * @param $fname String
1003 * @param $tempIgnore Boolean
1004 * @throws DBQueryError
1006 public function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false ) {
1007 # Ignore errors during error handling to avoid infinite recursion
1008 $ignore = $this->ignoreErrors( true );
1009 ++$this->mErrorCount;
1011 if ( $ignore || $tempIgnore ) {
1012 wfDebug( "SQL ERROR (ignored): $error\n" );
1013 $this->ignoreErrors( $ignore );
1014 } else {
1015 $sql1line = str_replace( "\n", "\\n", $sql );
1016 wfLogDBError( "$fname\t{$this->mServer}\t$errno\t$error\t$sql1line\n" );
1017 wfDebug( "SQL ERROR: " . $error . "\n" );
1018 throw new DBQueryError( $this, $error, $errno, $sql, $fname );
1023 * Intended to be compatible with the PEAR::DB wrapper functions.
1024 * http://pear.php.net/manual/en/package.database.db.intro-execute.php
1026 * ? = scalar value, quoted as necessary
1027 * ! = raw SQL bit (a function for instance)
1028 * & = filename; reads the file and inserts as a blob
1029 * (we don't use this though...)
1031 * @param $sql string
1032 * @param $func string
1034 * @return array
1036 protected function prepare( $sql, $func = 'DatabaseBase::prepare' ) {
1037 /* MySQL doesn't support prepared statements (yet), so just
1038 pack up the query for reference. We'll manually replace
1039 the bits later. */
1040 return array( 'query' => $sql, 'func' => $func );
1044 * Free a prepared query, generated by prepare().
1045 * @param $prepared
1047 protected function freePrepared( $prepared ) {
1048 /* No-op by default */
1052 * Execute a prepared query with the various arguments
1053 * @param $prepared String: the prepared sql
1054 * @param $args Mixed: Either an array here, or put scalars as varargs
1056 * @return ResultWrapper
1058 public function execute( $prepared, $args = null ) {
1059 if ( !is_array( $args ) ) {
1060 # Pull the var args
1061 $args = func_get_args();
1062 array_shift( $args );
1065 $sql = $this->fillPrepared( $prepared['query'], $args );
1067 return $this->query( $sql, $prepared['func'] );
1071 * For faking prepared SQL statements on DBs that don't support it directly.
1073 * @param $preparedQuery String: a 'preparable' SQL statement
1074 * @param $args Array of arguments to fill it with
1075 * @return string executable SQL
1077 public function fillPrepared( $preparedQuery, $args ) {
1078 reset( $args );
1079 $this->preparedArgs =& $args;
1081 return preg_replace_callback( '/(\\\\[?!&]|[?!&])/',
1082 array( &$this, 'fillPreparedArg' ), $preparedQuery );
1086 * preg_callback func for fillPrepared()
1087 * The arguments should be in $this->preparedArgs and must not be touched
1088 * while we're doing this.
1090 * @param $matches Array
1091 * @throws DBUnexpectedError
1092 * @return String
1094 protected function fillPreparedArg( $matches ) {
1095 switch( $matches[1] ) {
1096 case '\\?': return '?';
1097 case '\\!': return '!';
1098 case '\\&': return '&';
1101 list( /* $n */, $arg ) = each( $this->preparedArgs );
1103 switch( $matches[1] ) {
1104 case '?': return $this->addQuotes( $arg );
1105 case '!': return $arg;
1106 case '&':
1107 # return $this->addQuotes( file_get_contents( $arg ) );
1108 throw new DBUnexpectedError( $this, '& mode is not implemented. If it\'s really needed, uncomment the line above.' );
1109 default:
1110 throw new DBUnexpectedError( $this, 'Received invalid match. This should never happen!' );
1115 * Free a result object returned by query() or select(). It's usually not
1116 * necessary to call this, just use unset() or let the variable holding
1117 * the result object go out of scope.
1119 * @param $res Mixed: A SQL result
1121 public function freeResult( $res ) {}
1124 * A SELECT wrapper which returns a single field from a single result row.
1126 * Usually throws a DBQueryError on failure. If errors are explicitly
1127 * ignored, returns false on failure.
1129 * If no result rows are returned from the query, false is returned.
1131 * @param $table string|array Table name. See DatabaseBase::select() for details.
1132 * @param $var string The field name to select. This must be a valid SQL
1133 * fragment: do not use unvalidated user input.
1134 * @param $cond string|array The condition array. See DatabaseBase::select() for details.
1135 * @param $fname string The function name of the caller.
1136 * @param $options string|array The query options. See DatabaseBase::select() for details.
1138 * @return bool|mixed The value from the field, or false on failure.
1140 public function selectField( $table, $var, $cond = '', $fname = 'DatabaseBase::selectField',
1141 $options = array() )
1143 if ( !is_array( $options ) ) {
1144 $options = array( $options );
1147 $options['LIMIT'] = 1;
1149 $res = $this->select( $table, $var, $cond, $fname, $options );
1151 if ( $res === false || !$this->numRows( $res ) ) {
1152 return false;
1155 $row = $this->fetchRow( $res );
1157 if ( $row !== false ) {
1158 return reset( $row );
1159 } else {
1160 return false;
1165 * Returns an optional USE INDEX clause to go after the table, and a
1166 * string to go at the end of the query.
1168 * @param $options Array: associative array of options to be turned into
1169 * an SQL query, valid keys are listed in the function.
1170 * @return Array
1171 * @see DatabaseBase::select()
1173 public function makeSelectOptions( $options ) {
1174 $preLimitTail = $postLimitTail = '';
1175 $startOpts = '';
1177 $noKeyOptions = array();
1179 foreach ( $options as $key => $option ) {
1180 if ( is_numeric( $key ) ) {
1181 $noKeyOptions[$option] = true;
1185 $preLimitTail .= $this->makeGroupByWithHaving( $options );
1187 $preLimitTail .= $this->makeOrderBy( $options );
1189 // if (isset($options['LIMIT'])) {
1190 // $tailOpts .= $this->limitResult('', $options['LIMIT'],
1191 // isset($options['OFFSET']) ? $options['OFFSET']
1192 // : false);
1193 // }
1195 if ( isset( $noKeyOptions['FOR UPDATE'] ) ) {
1196 $postLimitTail .= ' FOR UPDATE';
1199 if ( isset( $noKeyOptions['LOCK IN SHARE MODE'] ) ) {
1200 $postLimitTail .= ' LOCK IN SHARE MODE';
1203 if ( isset( $noKeyOptions['DISTINCT'] ) || isset( $noKeyOptions['DISTINCTROW'] ) ) {
1204 $startOpts .= 'DISTINCT';
1207 # Various MySQL extensions
1208 if ( isset( $noKeyOptions['STRAIGHT_JOIN'] ) ) {
1209 $startOpts .= ' /*! STRAIGHT_JOIN */';
1212 if ( isset( $noKeyOptions['HIGH_PRIORITY'] ) ) {
1213 $startOpts .= ' HIGH_PRIORITY';
1216 if ( isset( $noKeyOptions['SQL_BIG_RESULT'] ) ) {
1217 $startOpts .= ' SQL_BIG_RESULT';
1220 if ( isset( $noKeyOptions['SQL_BUFFER_RESULT'] ) ) {
1221 $startOpts .= ' SQL_BUFFER_RESULT';
1224 if ( isset( $noKeyOptions['SQL_SMALL_RESULT'] ) ) {
1225 $startOpts .= ' SQL_SMALL_RESULT';
1228 if ( isset( $noKeyOptions['SQL_CALC_FOUND_ROWS'] ) ) {
1229 $startOpts .= ' SQL_CALC_FOUND_ROWS';
1232 if ( isset( $noKeyOptions['SQL_CACHE'] ) ) {
1233 $startOpts .= ' SQL_CACHE';
1236 if ( isset( $noKeyOptions['SQL_NO_CACHE'] ) ) {
1237 $startOpts .= ' SQL_NO_CACHE';
1240 if ( isset( $options['USE INDEX'] ) && ! is_array( $options['USE INDEX'] ) ) {
1241 $useIndex = $this->useIndexClause( $options['USE INDEX'] );
1242 } else {
1243 $useIndex = '';
1246 return array( $startOpts, $useIndex, $preLimitTail, $postLimitTail );
1250 * Returns an optional GROUP BY with an optional HAVING
1252 * @param $options Array: associative array of options
1253 * @return string
1254 * @see DatabaseBase::select()
1255 * @since 1.21
1257 public function makeGroupByWithHaving( $options ) {
1258 $sql = '';
1259 if ( isset( $options['GROUP BY'] ) ) {
1260 $gb = is_array( $options['GROUP BY'] )
1261 ? implode( ',', $options['GROUP BY'] )
1262 : $options['GROUP BY'];
1263 $sql .= ' GROUP BY ' . $gb;
1265 if ( isset( $options['HAVING'] ) ) {
1266 $having = is_array( $options['HAVING'] )
1267 ? $this->makeList( $options['HAVING'], LIST_AND )
1268 : $options['HAVING'];
1269 $sql .= ' HAVING ' . $having;
1271 return $sql;
1275 * Returns an optional ORDER BY
1277 * @param $options Array: associative array of options
1278 * @return string
1279 * @see DatabaseBase::select()
1280 * @since 1.21
1282 public function makeOrderBy( $options ) {
1283 if ( isset( $options['ORDER BY'] ) ) {
1284 $ob = is_array( $options['ORDER BY'] )
1285 ? implode( ',', $options['ORDER BY'] )
1286 : $options['ORDER BY'];
1287 return ' ORDER BY ' . $ob;
1289 return '';
1293 * Execute a SELECT query constructed using the various parameters provided.
1294 * See below for full details of the parameters.
1296 * @param $table String|Array Table name
1297 * @param $vars String|Array Field names
1298 * @param $conds String|Array Conditions
1299 * @param $fname String Caller function name
1300 * @param $options Array Query options
1301 * @param $join_conds Array Join conditions
1303 * @param $table string|array
1305 * May be either an array of table names, or a single string holding a table
1306 * name. If an array is given, table aliases can be specified, for example:
1308 * array( 'a' => 'user' )
1310 * This includes the user table in the query, with the alias "a" available
1311 * for use in field names (e.g. a.user_name).
1313 * All of the table names given here are automatically run through
1314 * DatabaseBase::tableName(), which causes the table prefix (if any) to be
1315 * added, and various other table name mappings to be performed.
1318 * @param $vars string|array
1320 * May be either a field name or an array of field names. The field names
1321 * can be complete fragments of SQL, for direct inclusion into the SELECT
1322 * query. If an array is given, field aliases can be specified, for example:
1324 * array( 'maxrev' => 'MAX(rev_id)' )
1326 * This includes an expression with the alias "maxrev" in the query.
1328 * If an expression is given, care must be taken to ensure that it is
1329 * DBMS-independent.
1332 * @param $conds string|array
1334 * May be either a string containing a single condition, or an array of
1335 * conditions. If an array is given, the conditions constructed from each
1336 * element are combined with AND.
1338 * Array elements may take one of two forms:
1340 * - Elements with a numeric key are interpreted as raw SQL fragments.
1341 * - Elements with a string key are interpreted as equality conditions,
1342 * where the key is the field name.
1343 * - If the value of such an array element is a scalar (such as a
1344 * string), it will be treated as data and thus quoted appropriately.
1345 * If it is null, an IS NULL clause will be added.
1346 * - If the value is an array, an IN(...) clause will be constructed,
1347 * such that the field name may match any of the elements in the
1348 * array. The elements of the array will be quoted.
1350 * Note that expressions are often DBMS-dependent in their syntax.
1351 * DBMS-independent wrappers are provided for constructing several types of
1352 * expression commonly used in condition queries. See:
1353 * - DatabaseBase::buildLike()
1354 * - DatabaseBase::conditional()
1357 * @param $options string|array
1359 * Optional: Array of query options. Boolean options are specified by
1360 * including them in the array as a string value with a numeric key, for
1361 * example:
1363 * array( 'FOR UPDATE' )
1365 * The supported options are:
1367 * - OFFSET: Skip this many rows at the start of the result set. OFFSET
1368 * with LIMIT can theoretically be used for paging through a result set,
1369 * but this is discouraged in MediaWiki for performance reasons.
1371 * - LIMIT: Integer: return at most this many rows. The rows are sorted
1372 * and then the first rows are taken until the limit is reached. LIMIT
1373 * is applied to a result set after OFFSET.
1375 * - FOR UPDATE: Boolean: lock the returned rows so that they can't be
1376 * changed until the next COMMIT.
1378 * - DISTINCT: Boolean: return only unique result rows.
1380 * - GROUP BY: May be either an SQL fragment string naming a field or
1381 * expression to group by, or an array of such SQL fragments.
1383 * - HAVING: May be either an string containing a HAVING clause or an array of
1384 * conditions building the HAVING clause. If an array is given, the conditions
1385 * constructed from each element are combined with AND.
1387 * - ORDER BY: May be either an SQL fragment giving a field name or
1388 * expression to order by, or an array of such SQL fragments.
1390 * - USE INDEX: This may be either a string giving the index name to use
1391 * for the query, or an array. If it is an associative array, each key
1392 * gives the table name (or alias), each value gives the index name to
1393 * use for that table. All strings are SQL fragments and so should be
1394 * validated by the caller.
1396 * - EXPLAIN: In MySQL, this causes an EXPLAIN SELECT query to be run,
1397 * instead of SELECT.
1399 * And also the following boolean MySQL extensions, see the MySQL manual
1400 * for documentation:
1402 * - LOCK IN SHARE MODE
1403 * - STRAIGHT_JOIN
1404 * - HIGH_PRIORITY
1405 * - SQL_BIG_RESULT
1406 * - SQL_BUFFER_RESULT
1407 * - SQL_SMALL_RESULT
1408 * - SQL_CALC_FOUND_ROWS
1409 * - SQL_CACHE
1410 * - SQL_NO_CACHE
1413 * @param $join_conds string|array
1415 * Optional associative array of table-specific join conditions. In the
1416 * most common case, this is unnecessary, since the join condition can be
1417 * in $conds. However, it is useful for doing a LEFT JOIN.
1419 * The key of the array contains the table name or alias. The value is an
1420 * array with two elements, numbered 0 and 1. The first gives the type of
1421 * join, the second is an SQL fragment giving the join condition for that
1422 * table. For example:
1424 * array( 'page' => array( 'LEFT JOIN', 'page_latest=rev_id' ) )
1426 * @return ResultWrapper. If the query returned no rows, a ResultWrapper
1427 * with no rows in it will be returned. If there was a query error, a
1428 * DBQueryError exception will be thrown, except if the "ignore errors"
1429 * option was set, in which case false will be returned.
1431 public function select( $table, $vars, $conds = '', $fname = 'DatabaseBase::select',
1432 $options = array(), $join_conds = array() ) {
1433 $sql = $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds );
1435 return $this->query( $sql, $fname );
1439 * The equivalent of DatabaseBase::select() except that the constructed SQL
1440 * is returned, instead of being immediately executed. This can be useful for
1441 * doing UNION queries, where the SQL text of each query is needed. In general,
1442 * however, callers outside of Database classes should just use select().
1444 * @param $table string|array Table name
1445 * @param $vars string|array Field names
1446 * @param $conds string|array Conditions
1447 * @param $fname string Caller function name
1448 * @param $options string|array Query options
1449 * @param $join_conds string|array Join conditions
1451 * @return string SQL query string.
1452 * @see DatabaseBase::select()
1454 public function selectSQLText( $table, $vars, $conds = '', $fname = 'DatabaseBase::select',
1455 $options = array(), $join_conds = array() )
1457 if ( is_array( $vars ) ) {
1458 $vars = implode( ',', $this->fieldNamesWithAlias( $vars ) );
1461 $options = (array)$options;
1463 if ( is_array( $table ) ) {
1464 $useIndex = ( isset( $options['USE INDEX'] ) && is_array( $options['USE INDEX'] ) )
1465 ? $options['USE INDEX']
1466 : array();
1467 if ( count( $join_conds ) || count( $useIndex ) ) {
1468 $from = ' FROM ' .
1469 $this->tableNamesWithUseIndexOrJOIN( $table, $useIndex, $join_conds );
1470 } else {
1471 $from = ' FROM ' . implode( ',', $this->tableNamesWithAlias( $table ) );
1473 } elseif ( $table != '' ) {
1474 if ( $table[0] == ' ' ) {
1475 $from = ' FROM ' . $table;
1476 } else {
1477 $from = ' FROM ' . $this->tableName( $table );
1479 } else {
1480 $from = '';
1483 list( $startOpts, $useIndex, $preLimitTail, $postLimitTail ) = $this->makeSelectOptions( $options );
1485 if ( !empty( $conds ) ) {
1486 if ( is_array( $conds ) ) {
1487 $conds = $this->makeList( $conds, LIST_AND );
1489 $sql = "SELECT $startOpts $vars $from $useIndex WHERE $conds $preLimitTail";
1490 } else {
1491 $sql = "SELECT $startOpts $vars $from $useIndex $preLimitTail";
1494 if ( isset( $options['LIMIT'] ) ) {
1495 $sql = $this->limitResult( $sql, $options['LIMIT'],
1496 isset( $options['OFFSET'] ) ? $options['OFFSET'] : false );
1498 $sql = "$sql $postLimitTail";
1500 if ( isset( $options['EXPLAIN'] ) ) {
1501 $sql = 'EXPLAIN ' . $sql;
1504 return $sql;
1508 * Single row SELECT wrapper. Equivalent to DatabaseBase::select(), except
1509 * that a single row object is returned. If the query returns no rows,
1510 * false is returned.
1512 * @param $table string|array Table name
1513 * @param $vars string|array Field names
1514 * @param $conds array Conditions
1515 * @param $fname string Caller function name
1516 * @param $options string|array Query options
1517 * @param $join_conds array|string Join conditions
1519 * @return object|bool
1521 public function selectRow( $table, $vars, $conds, $fname = 'DatabaseBase::selectRow',
1522 $options = array(), $join_conds = array() )
1524 $options = (array)$options;
1525 $options['LIMIT'] = 1;
1526 $res = $this->select( $table, $vars, $conds, $fname, $options, $join_conds );
1528 if ( $res === false ) {
1529 return false;
1532 if ( !$this->numRows( $res ) ) {
1533 return false;
1536 $obj = $this->fetchObject( $res );
1538 return $obj;
1542 * Estimate rows in dataset.
1544 * MySQL allows you to estimate the number of rows that would be returned
1545 * by a SELECT query, using EXPLAIN SELECT. The estimate is provided using
1546 * index cardinality statistics, and is notoriously inaccurate, especially
1547 * when large numbers of rows have recently been added or deleted.
1549 * For DBMSs that don't support fast result size estimation, this function
1550 * will actually perform the SELECT COUNT(*).
1552 * Takes the same arguments as DatabaseBase::select().
1554 * @param $table String: table name
1555 * @param Array|string $vars : unused
1556 * @param Array|string $conds : filters on the table
1557 * @param $fname String: function name for profiling
1558 * @param $options Array: options for select
1559 * @return Integer: row count
1561 public function estimateRowCount( $table, $vars = '*', $conds = '',
1562 $fname = 'DatabaseBase::estimateRowCount', $options = array() )
1564 $rows = 0;
1565 $res = $this->select( $table, array( 'rowcount' => 'COUNT(*)' ), $conds, $fname, $options );
1567 if ( $res ) {
1568 $row = $this->fetchRow( $res );
1569 $rows = ( isset( $row['rowcount'] ) ) ? $row['rowcount'] : 0;
1572 return $rows;
1576 * Removes most variables from an SQL query and replaces them with X or N for numbers.
1577 * It's only slightly flawed. Don't use for anything important.
1579 * @param $sql String A SQL Query
1581 * @return string
1583 static function generalizeSQL( $sql ) {
1584 # This does the same as the regexp below would do, but in such a way
1585 # as to avoid crashing php on some large strings.
1586 # $sql = preg_replace ( "/'([^\\\\']|\\\\.)*'|\"([^\\\\\"]|\\\\.)*\"/", "'X'", $sql);
1588 $sql = str_replace ( "\\\\", '', $sql );
1589 $sql = str_replace ( "\\'", '', $sql );
1590 $sql = str_replace ( "\\\"", '', $sql );
1591 $sql = preg_replace ( "/'.*'/s", "'X'", $sql );
1592 $sql = preg_replace ( '/".*"/s', "'X'", $sql );
1594 # All newlines, tabs, etc replaced by single space
1595 $sql = preg_replace ( '/\s+/', ' ', $sql );
1597 # All numbers => N
1598 $sql = preg_replace ( '/-?[0-9]+/s', 'N', $sql );
1600 return $sql;
1604 * Determines whether a field exists in a table
1606 * @param $table String: table name
1607 * @param $field String: filed to check on that table
1608 * @param $fname String: calling function name (optional)
1609 * @return Boolean: whether $table has filed $field
1611 public function fieldExists( $table, $field, $fname = 'DatabaseBase::fieldExists' ) {
1612 $info = $this->fieldInfo( $table, $field );
1614 return (bool)$info;
1618 * Determines whether an index exists
1619 * Usually throws a DBQueryError on failure
1620 * If errors are explicitly ignored, returns NULL on failure
1622 * @param $table
1623 * @param $index
1624 * @param $fname string
1626 * @return bool|null
1628 public function indexExists( $table, $index, $fname = 'DatabaseBase::indexExists' ) {
1629 if( !$this->tableExists( $table ) ) {
1630 return null;
1633 $info = $this->indexInfo( $table, $index, $fname );
1634 if ( is_null( $info ) ) {
1635 return null;
1636 } else {
1637 return $info !== false;
1642 * Query whether a given table exists
1644 * @param $table string
1645 * @param $fname string
1647 * @return bool
1649 public function tableExists( $table, $fname = __METHOD__ ) {
1650 $table = $this->tableName( $table );
1651 $old = $this->ignoreErrors( true );
1652 $res = $this->query( "SELECT 1 FROM $table LIMIT 1", $fname );
1653 $this->ignoreErrors( $old );
1655 return (bool)$res;
1659 * mysql_field_type() wrapper
1660 * @param $res
1661 * @param $index
1662 * @return string
1664 public function fieldType( $res, $index ) {
1665 if ( $res instanceof ResultWrapper ) {
1666 $res = $res->result;
1669 return mysql_field_type( $res, $index );
1673 * Determines if a given index is unique
1675 * @param $table string
1676 * @param $index string
1678 * @return bool
1680 public function indexUnique( $table, $index ) {
1681 $indexInfo = $this->indexInfo( $table, $index );
1683 if ( !$indexInfo ) {
1684 return null;
1687 return !$indexInfo[0]->Non_unique;
1691 * Helper for DatabaseBase::insert().
1693 * @param $options array
1694 * @return string
1696 protected function makeInsertOptions( $options ) {
1697 return implode( ' ', $options );
1701 * INSERT wrapper, inserts an array into a table.
1703 * $a may be either:
1705 * - A single associative array. The array keys are the field names, and
1706 * the values are the values to insert. The values are treated as data
1707 * and will be quoted appropriately. If NULL is inserted, this will be
1708 * converted to a database NULL.
1709 * - An array with numeric keys, holding a list of associative arrays.
1710 * This causes a multi-row INSERT on DBMSs that support it. The keys in
1711 * each subarray must be identical to each other, and in the same order.
1713 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
1714 * returns success.
1716 * $options is an array of options, with boolean options encoded as values
1717 * with numeric keys, in the same style as $options in
1718 * DatabaseBase::select(). Supported options are:
1720 * - IGNORE: Boolean: if present, duplicate key errors are ignored, and
1721 * any rows which cause duplicate key errors are not inserted. It's
1722 * possible to determine how many rows were successfully inserted using
1723 * DatabaseBase::affectedRows().
1725 * @param $table String Table name. This will be passed through
1726 * DatabaseBase::tableName().
1727 * @param $a Array of rows to insert
1728 * @param $fname String Calling function name (use __METHOD__) for logs/profiling
1729 * @param $options Array of options
1731 * @return bool
1733 public function insert( $table, $a, $fname = 'DatabaseBase::insert', $options = array() ) {
1734 # No rows to insert, easy just return now
1735 if ( !count( $a ) ) {
1736 return true;
1739 $table = $this->tableName( $table );
1741 if ( !is_array( $options ) ) {
1742 $options = array( $options );
1745 $fh = null;
1746 if ( isset( $options['fileHandle'] ) ) {
1747 $fh = $options['fileHandle'];
1749 $options = $this->makeInsertOptions( $options );
1751 if ( isset( $a[0] ) && is_array( $a[0] ) ) {
1752 $multi = true;
1753 $keys = array_keys( $a[0] );
1754 } else {
1755 $multi = false;
1756 $keys = array_keys( $a );
1759 $sql = 'INSERT ' . $options .
1760 " INTO $table (" . implode( ',', $keys ) . ') VALUES ';
1762 if ( $multi ) {
1763 $first = true;
1764 foreach ( $a as $row ) {
1765 if ( $first ) {
1766 $first = false;
1767 } else {
1768 $sql .= ',';
1770 $sql .= '(' . $this->makeList( $row ) . ')';
1772 } else {
1773 $sql .= '(' . $this->makeList( $a ) . ')';
1776 if ( $fh !== null && false === fwrite( $fh, $sql ) ) {
1777 return false;
1778 } elseif ( $fh !== null ) {
1779 return true;
1782 return (bool)$this->query( $sql, $fname );
1786 * Make UPDATE options for the DatabaseBase::update function
1788 * @param $options Array: The options passed to DatabaseBase::update
1789 * @return string
1791 protected function makeUpdateOptions( $options ) {
1792 if ( !is_array( $options ) ) {
1793 $options = array( $options );
1796 $opts = array();
1798 if ( in_array( 'LOW_PRIORITY', $options ) ) {
1799 $opts[] = $this->lowPriorityOption();
1802 if ( in_array( 'IGNORE', $options ) ) {
1803 $opts[] = 'IGNORE';
1806 return implode( ' ', $opts );
1810 * UPDATE wrapper. Takes a condition array and a SET array.
1812 * @param $table String name of the table to UPDATE. This will be passed through
1813 * DatabaseBase::tableName().
1815 * @param $values Array: An array of values to SET. For each array element,
1816 * the key gives the field name, and the value gives the data
1817 * to set that field to. The data will be quoted by
1818 * DatabaseBase::addQuotes().
1820 * @param $conds Array: An array of conditions (WHERE). See
1821 * DatabaseBase::select() for the details of the format of
1822 * condition arrays. Use '*' to update all rows.
1824 * @param $fname String: The function name of the caller (from __METHOD__),
1825 * for logging and profiling.
1827 * @param $options Array: An array of UPDATE options, can be:
1828 * - IGNORE: Ignore unique key conflicts
1829 * - LOW_PRIORITY: MySQL-specific, see MySQL manual.
1830 * @return Boolean
1832 function update( $table, $values, $conds, $fname = 'DatabaseBase::update', $options = array() ) {
1833 $table = $this->tableName( $table );
1834 $opts = $this->makeUpdateOptions( $options );
1835 $sql = "UPDATE $opts $table SET " . $this->makeList( $values, LIST_SET );
1837 if ( $conds !== array() && $conds !== '*' ) {
1838 $sql .= " WHERE " . $this->makeList( $conds, LIST_AND );
1841 return $this->query( $sql, $fname );
1845 * Makes an encoded list of strings from an array
1846 * @param $a Array containing the data
1847 * @param int $mode Constant
1848 * - LIST_COMMA: comma separated, no field names
1849 * - LIST_AND: ANDed WHERE clause (without the WHERE). See
1850 * the documentation for $conds in DatabaseBase::select().
1851 * - LIST_OR: ORed WHERE clause (without the WHERE)
1852 * - LIST_SET: comma separated with field names, like a SET clause
1853 * - LIST_NAMES: comma separated field names
1855 * @throws MWException|DBUnexpectedError
1856 * @return string
1858 public function makeList( $a, $mode = LIST_COMMA ) {
1859 if ( !is_array( $a ) ) {
1860 throw new DBUnexpectedError( $this, 'DatabaseBase::makeList called with incorrect parameters' );
1863 $first = true;
1864 $list = '';
1866 foreach ( $a as $field => $value ) {
1867 if ( !$first ) {
1868 if ( $mode == LIST_AND ) {
1869 $list .= ' AND ';
1870 } elseif ( $mode == LIST_OR ) {
1871 $list .= ' OR ';
1872 } else {
1873 $list .= ',';
1875 } else {
1876 $first = false;
1879 if ( ( $mode == LIST_AND || $mode == LIST_OR ) && is_numeric( $field ) ) {
1880 $list .= "($value)";
1881 } elseif ( ( $mode == LIST_SET ) && is_numeric( $field ) ) {
1882 $list .= "$value";
1883 } elseif ( ( $mode == LIST_AND || $mode == LIST_OR ) && is_array( $value ) ) {
1884 if ( count( $value ) == 0 ) {
1885 throw new MWException( __METHOD__ . ": empty input for field $field" );
1886 } elseif ( count( $value ) == 1 ) {
1887 // Special-case single values, as IN isn't terribly efficient
1888 // Don't necessarily assume the single key is 0; we don't
1889 // enforce linear numeric ordering on other arrays here.
1890 $value = array_values( $value );
1891 $list .= $field . " = " . $this->addQuotes( $value[0] );
1892 } else {
1893 $list .= $field . " IN (" . $this->makeList( $value ) . ") ";
1895 } elseif ( $value === null ) {
1896 if ( $mode == LIST_AND || $mode == LIST_OR ) {
1897 $list .= "$field IS ";
1898 } elseif ( $mode == LIST_SET ) {
1899 $list .= "$field = ";
1901 $list .= 'NULL';
1902 } else {
1903 if ( $mode == LIST_AND || $mode == LIST_OR || $mode == LIST_SET ) {
1904 $list .= "$field = ";
1906 $list .= $mode == LIST_NAMES ? $value : $this->addQuotes( $value );
1910 return $list;
1914 * Build a partial where clause from a 2-d array such as used for LinkBatch.
1915 * The keys on each level may be either integers or strings.
1917 * @param $data Array: organized as 2-d
1918 * array(baseKeyVal => array(subKeyVal => [ignored], ...), ...)
1919 * @param $baseKey String: field name to match the base-level keys to (eg 'pl_namespace')
1920 * @param $subKey String: field name to match the sub-level keys to (eg 'pl_title')
1921 * @return Mixed: string SQL fragment, or false if no items in array.
1923 public function makeWhereFrom2d( $data, $baseKey, $subKey ) {
1924 $conds = array();
1926 foreach ( $data as $base => $sub ) {
1927 if ( count( $sub ) ) {
1928 $conds[] = $this->makeList(
1929 array( $baseKey => $base, $subKey => array_keys( $sub ) ),
1930 LIST_AND );
1934 if ( $conds ) {
1935 return $this->makeList( $conds, LIST_OR );
1936 } else {
1937 // Nothing to search for...
1938 return false;
1943 * Return aggregated value alias
1945 * @param $valuedata
1946 * @param $valuename string
1948 * @return string
1950 public function aggregateValue( $valuedata, $valuename = 'value' ) {
1951 return $valuename;
1955 * @param $field
1956 * @return string
1958 public function bitNot( $field ) {
1959 return "(~$field)";
1963 * @param $fieldLeft
1964 * @param $fieldRight
1965 * @return string
1967 public function bitAnd( $fieldLeft, $fieldRight ) {
1968 return "($fieldLeft & $fieldRight)";
1972 * @param $fieldLeft
1973 * @param $fieldRight
1974 * @return string
1976 public function bitOr( $fieldLeft, $fieldRight ) {
1977 return "($fieldLeft | $fieldRight)";
1981 * Build a concatenation list to feed into a SQL query
1982 * @param $stringList Array: list of raw SQL expressions; caller is responsible for any quoting
1983 * @return String
1985 public function buildConcat( $stringList ) {
1986 return 'CONCAT(' . implode( ',', $stringList ) . ')';
1990 * Change the current database
1992 * @todo Explain what exactly will fail if this is not overridden.
1994 * @param $db
1996 * @return bool Success or failure
1998 public function selectDB( $db ) {
1999 # Stub. Shouldn't cause serious problems if it's not overridden, but
2000 # if your database engine supports a concept similar to MySQL's
2001 # databases you may as well.
2002 $this->mDBname = $db;
2003 return true;
2007 * Get the current DB name
2009 public function getDBname() {
2010 return $this->mDBname;
2014 * Get the server hostname or IP address
2016 public function getServer() {
2017 return $this->mServer;
2021 * Format a table name ready for use in constructing an SQL query
2023 * This does two important things: it quotes the table names to clean them up,
2024 * and it adds a table prefix if only given a table name with no quotes.
2026 * All functions of this object which require a table name call this function
2027 * themselves. Pass the canonical name to such functions. This is only needed
2028 * when calling query() directly.
2030 * @param $name String: database table name
2031 * @param $format String One of:
2032 * quoted - Automatically pass the table name through addIdentifierQuotes()
2033 * so that it can be used in a query.
2034 * raw - Do not add identifier quotes to the table name
2035 * @return String: full database name
2037 public function tableName( $name, $format = 'quoted' ) {
2038 global $wgSharedDB, $wgSharedPrefix, $wgSharedTables;
2039 # Skip the entire process when we have a string quoted on both ends.
2040 # Note that we check the end so that we will still quote any use of
2041 # use of `database`.table. But won't break things if someone wants
2042 # to query a database table with a dot in the name.
2043 if ( $this->isQuotedIdentifier( $name ) ) {
2044 return $name;
2047 # Lets test for any bits of text that should never show up in a table
2048 # name. Basically anything like JOIN or ON which are actually part of
2049 # SQL queries, but may end up inside of the table value to combine
2050 # sql. Such as how the API is doing.
2051 # Note that we use a whitespace test rather than a \b test to avoid
2052 # any remote case where a word like on may be inside of a table name
2053 # surrounded by symbols which may be considered word breaks.
2054 if ( preg_match( '/(^|\s)(DISTINCT|JOIN|ON|AS)(\s|$)/i', $name ) !== 0 ) {
2055 return $name;
2058 # Split database and table into proper variables.
2059 # We reverse the explode so that database.table and table both output
2060 # the correct table.
2061 $dbDetails = explode( '.', $name, 2 );
2062 if ( count( $dbDetails ) == 2 ) {
2063 list( $database, $table ) = $dbDetails;
2064 # We don't want any prefix added in this case
2065 $prefix = '';
2066 } else {
2067 list( $table ) = $dbDetails;
2068 if ( $wgSharedDB !== null # We have a shared database
2069 && !$this->isQuotedIdentifier( $table ) # Paranoia check to prevent shared tables listing '`table`'
2070 && in_array( $table, $wgSharedTables ) # A shared table is selected
2072 $database = $wgSharedDB;
2073 $prefix = $wgSharedPrefix === null ? $this->mTablePrefix : $wgSharedPrefix;
2074 } else {
2075 $database = null;
2076 $prefix = $this->mTablePrefix; # Default prefix
2080 # Quote $table and apply the prefix if not quoted.
2081 $tableName = "{$prefix}{$table}";
2082 if ( $format == 'quoted' && !$this->isQuotedIdentifier( $tableName ) ) {
2083 $tableName = $this->addIdentifierQuotes( $tableName );
2086 # Quote $database and merge it with the table name if needed
2087 if ( $database !== null ) {
2088 if ( $format == 'quoted' && !$this->isQuotedIdentifier( $database ) ) {
2089 $database = $this->addIdentifierQuotes( $database );
2091 $tableName = $database . '.' . $tableName;
2094 return $tableName;
2098 * Fetch a number of table names into an array
2099 * This is handy when you need to construct SQL for joins
2101 * Example:
2102 * extract( $dbr->tableNames( 'user', 'watchlist' ) );
2103 * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
2104 * WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
2106 * @return array
2108 public function tableNames() {
2109 $inArray = func_get_args();
2110 $retVal = array();
2112 foreach ( $inArray as $name ) {
2113 $retVal[$name] = $this->tableName( $name );
2116 return $retVal;
2120 * Fetch a number of table names into an zero-indexed numerical array
2121 * This is handy when you need to construct SQL for joins
2123 * Example:
2124 * list( $user, $watchlist ) = $dbr->tableNamesN( 'user', 'watchlist' );
2125 * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
2126 * WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
2128 * @return array
2130 public function tableNamesN() {
2131 $inArray = func_get_args();
2132 $retVal = array();
2134 foreach ( $inArray as $name ) {
2135 $retVal[] = $this->tableName( $name );
2138 return $retVal;
2142 * Get an aliased table name
2143 * e.g. tableName AS newTableName
2145 * @param $name string Table name, see tableName()
2146 * @param $alias string|bool Alias (optional)
2147 * @return string SQL name for aliased table. Will not alias a table to its own name
2149 public function tableNameWithAlias( $name, $alias = false ) {
2150 if ( !$alias || $alias == $name ) {
2151 return $this->tableName( $name );
2152 } else {
2153 return $this->tableName( $name ) . ' ' . $this->addIdentifierQuotes( $alias );
2158 * Gets an array of aliased table names
2160 * @param $tables array( [alias] => table )
2161 * @return array of strings, see tableNameWithAlias()
2163 public function tableNamesWithAlias( $tables ) {
2164 $retval = array();
2165 foreach ( $tables as $alias => $table ) {
2166 if ( is_numeric( $alias ) ) {
2167 $alias = $table;
2169 $retval[] = $this->tableNameWithAlias( $table, $alias );
2171 return $retval;
2175 * Get an aliased field name
2176 * e.g. fieldName AS newFieldName
2178 * @param $name string Field name
2179 * @param $alias string|bool Alias (optional)
2180 * @return string SQL name for aliased field. Will not alias a field to its own name
2182 public function fieldNameWithAlias( $name, $alias = false ) {
2183 if ( !$alias || (string)$alias === (string)$name ) {
2184 return $name;
2185 } else {
2186 return $name . ' AS ' . $alias; //PostgreSQL needs AS
2191 * Gets an array of aliased field names
2193 * @param $fields array( [alias] => field )
2194 * @return array of strings, see fieldNameWithAlias()
2196 public function fieldNamesWithAlias( $fields ) {
2197 $retval = array();
2198 foreach ( $fields as $alias => $field ) {
2199 if ( is_numeric( $alias ) ) {
2200 $alias = $field;
2202 $retval[] = $this->fieldNameWithAlias( $field, $alias );
2204 return $retval;
2208 * Get the aliased table name clause for a FROM clause
2209 * which might have a JOIN and/or USE INDEX clause
2211 * @param $tables array ( [alias] => table )
2212 * @param $use_index array Same as for select()
2213 * @param $join_conds array Same as for select()
2214 * @return string
2216 protected function tableNamesWithUseIndexOrJOIN(
2217 $tables, $use_index = array(), $join_conds = array()
2219 $ret = array();
2220 $retJOIN = array();
2221 $use_index = (array)$use_index;
2222 $join_conds = (array)$join_conds;
2224 foreach ( $tables as $alias => $table ) {
2225 if ( !is_string( $alias ) ) {
2226 // No alias? Set it equal to the table name
2227 $alias = $table;
2229 // Is there a JOIN clause for this table?
2230 if ( isset( $join_conds[$alias] ) ) {
2231 list( $joinType, $conds ) = $join_conds[$alias];
2232 $tableClause = $joinType;
2233 $tableClause .= ' ' . $this->tableNameWithAlias( $table, $alias );
2234 if ( isset( $use_index[$alias] ) ) { // has USE INDEX?
2235 $use = $this->useIndexClause( implode( ',', (array)$use_index[$alias] ) );
2236 if ( $use != '' ) {
2237 $tableClause .= ' ' . $use;
2240 $on = $this->makeList( (array)$conds, LIST_AND );
2241 if ( $on != '' ) {
2242 $tableClause .= ' ON (' . $on . ')';
2245 $retJOIN[] = $tableClause;
2246 // Is there an INDEX clause for this table?
2247 } elseif ( isset( $use_index[$alias] ) ) {
2248 $tableClause = $this->tableNameWithAlias( $table, $alias );
2249 $tableClause .= ' ' . $this->useIndexClause(
2250 implode( ',', (array)$use_index[$alias] ) );
2252 $ret[] = $tableClause;
2253 } else {
2254 $tableClause = $this->tableNameWithAlias( $table, $alias );
2256 $ret[] = $tableClause;
2260 // We can't separate explicit JOIN clauses with ',', use ' ' for those
2261 $straightJoins = !empty( $ret ) ? implode( ',', $ret ) : "";
2262 $otherJoins = !empty( $retJOIN ) ? implode( ' ', $retJOIN ) : "";
2264 // Compile our final table clause
2265 return implode( ' ', array( $straightJoins, $otherJoins ) );
2269 * Get the name of an index in a given table
2271 * @param $index
2273 * @return string
2275 protected function indexName( $index ) {
2276 // Backwards-compatibility hack
2277 $renamed = array(
2278 'ar_usertext_timestamp' => 'usertext_timestamp',
2279 'un_user_id' => 'user_id',
2280 'un_user_ip' => 'user_ip',
2283 if ( isset( $renamed[$index] ) ) {
2284 return $renamed[$index];
2285 } else {
2286 return $index;
2291 * If it's a string, adds quotes and backslashes
2292 * Otherwise returns as-is
2294 * @param $s string
2296 * @return string
2298 public function addQuotes( $s ) {
2299 if ( $s === null ) {
2300 return 'NULL';
2301 } else {
2302 # This will also quote numeric values. This should be harmless,
2303 # and protects against weird problems that occur when they really
2304 # _are_ strings such as article titles and string->number->string
2305 # conversion is not 1:1.
2306 return "'" . $this->strencode( $s ) . "'";
2311 * Quotes an identifier using `backticks` or "double quotes" depending on the database type.
2312 * MySQL uses `backticks` while basically everything else uses double quotes.
2313 * Since MySQL is the odd one out here the double quotes are our generic
2314 * and we implement backticks in DatabaseMysql.
2316 * @param $s string
2318 * @return string
2320 public function addIdentifierQuotes( $s ) {
2321 return '"' . str_replace( '"', '""', $s ) . '"';
2325 * Returns if the given identifier looks quoted or not according to
2326 * the database convention for quoting identifiers .
2328 * @param $name string
2330 * @return boolean
2332 public function isQuotedIdentifier( $name ) {
2333 return $name[0] == '"' && substr( $name, -1, 1 ) == '"';
2337 * @param $s string
2338 * @return string
2340 protected function escapeLikeInternal( $s ) {
2341 $s = str_replace( '\\', '\\\\', $s );
2342 $s = $this->strencode( $s );
2343 $s = str_replace( array( '%', '_' ), array( '\%', '\_' ), $s );
2345 return $s;
2349 * LIKE statement wrapper, receives a variable-length argument list with parts of pattern to match
2350 * containing either string literals that will be escaped or tokens returned by anyChar() or anyString().
2351 * Alternatively, the function could be provided with an array of aforementioned parameters.
2353 * Example: $dbr->buildLike( 'My_page_title/', $dbr->anyString() ) returns a LIKE clause that searches
2354 * for subpages of 'My page title'.
2355 * Alternatively: $pattern = array( 'My_page_title/', $dbr->anyString() ); $query .= $dbr->buildLike( $pattern );
2357 * @since 1.16
2358 * @return String: fully built LIKE statement
2360 public function buildLike() {
2361 $params = func_get_args();
2363 if ( count( $params ) > 0 && is_array( $params[0] ) ) {
2364 $params = $params[0];
2367 $s = '';
2369 foreach ( $params as $value ) {
2370 if ( $value instanceof LikeMatch ) {
2371 $s .= $value->toString();
2372 } else {
2373 $s .= $this->escapeLikeInternal( $value );
2377 return " LIKE '" . $s . "' ";
2381 * Returns a token for buildLike() that denotes a '_' to be used in a LIKE query
2383 * @return LikeMatch
2385 public function anyChar() {
2386 return new LikeMatch( '_' );
2390 * Returns a token for buildLike() that denotes a '%' to be used in a LIKE query
2392 * @return LikeMatch
2394 public function anyString() {
2395 return new LikeMatch( '%' );
2399 * Returns an appropriately quoted sequence value for inserting a new row.
2400 * MySQL has autoincrement fields, so this is just NULL. But the PostgreSQL
2401 * subclass will return an integer, and save the value for insertId()
2403 * Any implementation of this function should *not* involve reusing
2404 * sequence numbers created for rolled-back transactions.
2405 * See http://bugs.mysql.com/bug.php?id=30767 for details.
2406 * @param $seqName string
2407 * @return null
2409 public function nextSequenceValue( $seqName ) {
2410 return null;
2414 * USE INDEX clause. Unlikely to be useful for anything but MySQL. This
2415 * is only needed because a) MySQL must be as efficient as possible due to
2416 * its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about
2417 * which index to pick. Anyway, other databases might have different
2418 * indexes on a given table. So don't bother overriding this unless you're
2419 * MySQL.
2420 * @param $index
2421 * @return string
2423 public function useIndexClause( $index ) {
2424 return '';
2428 * REPLACE query wrapper.
2430 * REPLACE is a very handy MySQL extension, which functions like an INSERT
2431 * except that when there is a duplicate key error, the old row is deleted
2432 * and the new row is inserted in its place.
2434 * We simulate this with standard SQL with a DELETE followed by INSERT. To
2435 * perform the delete, we need to know what the unique indexes are so that
2436 * we know how to find the conflicting rows.
2438 * It may be more efficient to leave off unique indexes which are unlikely
2439 * to collide. However if you do this, you run the risk of encountering
2440 * errors which wouldn't have occurred in MySQL.
2442 * @param $table String: The table to replace the row(s) in.
2443 * @param $rows array Can be either a single row to insert, or multiple rows,
2444 * in the same format as for DatabaseBase::insert()
2445 * @param $uniqueIndexes array is an array of indexes. Each element may be either
2446 * a field name or an array of field names
2447 * @param $fname String: Calling function name (use __METHOD__) for logs/profiling
2449 public function replace( $table, $uniqueIndexes, $rows, $fname = 'DatabaseBase::replace' ) {
2450 $quotedTable = $this->tableName( $table );
2452 if ( count( $rows ) == 0 ) {
2453 return;
2456 # Single row case
2457 if ( !is_array( reset( $rows ) ) ) {
2458 $rows = array( $rows );
2461 foreach( $rows as $row ) {
2462 # Delete rows which collide
2463 if ( $uniqueIndexes ) {
2464 $sql = "DELETE FROM $quotedTable WHERE ";
2465 $first = true;
2466 foreach ( $uniqueIndexes as $index ) {
2467 if ( $first ) {
2468 $first = false;
2469 $sql .= '( ';
2470 } else {
2471 $sql .= ' ) OR ( ';
2473 if ( is_array( $index ) ) {
2474 $first2 = true;
2475 foreach ( $index as $col ) {
2476 if ( $first2 ) {
2477 $first2 = false;
2478 } else {
2479 $sql .= ' AND ';
2481 $sql .= $col . '=' . $this->addQuotes( $row[$col] );
2483 } else {
2484 $sql .= $index . '=' . $this->addQuotes( $row[$index] );
2487 $sql .= ' )';
2488 $this->query( $sql, $fname );
2491 # Now insert the row
2492 $this->insert( $table, $row );
2497 * REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE
2498 * statement.
2500 * @param $table string Table name
2501 * @param $rows array Rows to insert
2502 * @param $fname string Caller function name
2504 * @return ResultWrapper
2506 protected function nativeReplace( $table, $rows, $fname ) {
2507 $table = $this->tableName( $table );
2509 # Single row case
2510 if ( !is_array( reset( $rows ) ) ) {
2511 $rows = array( $rows );
2514 $sql = "REPLACE INTO $table (" . implode( ',', array_keys( $rows[0] ) ) . ') VALUES ';
2515 $first = true;
2517 foreach ( $rows as $row ) {
2518 if ( $first ) {
2519 $first = false;
2520 } else {
2521 $sql .= ',';
2524 $sql .= '(' . $this->makeList( $row ) . ')';
2527 return $this->query( $sql, $fname );
2531 * DELETE where the condition is a join.
2533 * MySQL overrides this to use a multi-table DELETE syntax, in other databases
2534 * we use sub-selects
2536 * For safety, an empty $conds will not delete everything. If you want to
2537 * delete all rows where the join condition matches, set $conds='*'.
2539 * DO NOT put the join condition in $conds.
2541 * @param $delTable String: The table to delete from.
2542 * @param $joinTable String: The other table.
2543 * @param $delVar String: The variable to join on, in the first table.
2544 * @param $joinVar String: The variable to join on, in the second table.
2545 * @param $conds Array: Condition array of field names mapped to variables,
2546 * ANDed together in the WHERE clause
2547 * @param $fname String: Calling function name (use __METHOD__) for
2548 * logs/profiling
2549 * @throws DBUnexpectedError
2551 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
2552 $fname = 'DatabaseBase::deleteJoin' )
2554 if ( !$conds ) {
2555 throw new DBUnexpectedError( $this,
2556 'DatabaseBase::deleteJoin() called with empty $conds' );
2559 $delTable = $this->tableName( $delTable );
2560 $joinTable = $this->tableName( $joinTable );
2561 $sql = "DELETE FROM $delTable WHERE $delVar IN (SELECT $joinVar FROM $joinTable ";
2562 if ( $conds != '*' ) {
2563 $sql .= 'WHERE ' . $this->makeList( $conds, LIST_AND );
2565 $sql .= ')';
2567 $this->query( $sql, $fname );
2571 * Returns the size of a text field, or -1 for "unlimited"
2573 * @param $table string
2574 * @param $field string
2576 * @return int
2578 public function textFieldSize( $table, $field ) {
2579 $table = $this->tableName( $table );
2580 $sql = "SHOW COLUMNS FROM $table LIKE \"$field\";";
2581 $res = $this->query( $sql, 'DatabaseBase::textFieldSize' );
2582 $row = $this->fetchObject( $res );
2584 $m = array();
2586 if ( preg_match( '/\((.*)\)/', $row->Type, $m ) ) {
2587 $size = $m[1];
2588 } else {
2589 $size = -1;
2592 return $size;
2596 * A string to insert into queries to show that they're low-priority, like
2597 * MySQL's LOW_PRIORITY. If no such feature exists, return an empty
2598 * string and nothing bad should happen.
2600 * @return string Returns the text of the low priority option if it is
2601 * supported, or a blank string otherwise
2603 public function lowPriorityOption() {
2604 return '';
2608 * DELETE query wrapper.
2610 * @param $table Array Table name
2611 * @param $conds String|Array of conditions. See $conds in DatabaseBase::select() for
2612 * the format. Use $conds == "*" to delete all rows
2613 * @param $fname String name of the calling function
2615 * @throws DBUnexpectedError
2616 * @return bool|ResultWrapper
2618 public function delete( $table, $conds, $fname = 'DatabaseBase::delete' ) {
2619 if ( !$conds ) {
2620 throw new DBUnexpectedError( $this, 'DatabaseBase::delete() called with no conditions' );
2623 $table = $this->tableName( $table );
2624 $sql = "DELETE FROM $table";
2626 if ( $conds != '*' ) {
2627 $sql .= ' WHERE ' . $this->makeList( $conds, LIST_AND );
2630 return $this->query( $sql, $fname );
2634 * INSERT SELECT wrapper. Takes data from a SELECT query and inserts it
2635 * into another table.
2637 * @param $destTable string The table name to insert into
2638 * @param $srcTable string|array May be either a table name, or an array of table names
2639 * to include in a join.
2641 * @param $varMap array must be an associative array of the form
2642 * array( 'dest1' => 'source1', ...). Source items may be literals
2643 * rather than field names, but strings should be quoted with
2644 * DatabaseBase::addQuotes()
2646 * @param $conds array Condition array. See $conds in DatabaseBase::select() for
2647 * the details of the format of condition arrays. May be "*" to copy the
2648 * whole table.
2650 * @param $fname string The function name of the caller, from __METHOD__
2652 * @param $insertOptions array Options for the INSERT part of the query, see
2653 * DatabaseBase::insert() for details.
2654 * @param $selectOptions array Options for the SELECT part of the query, see
2655 * DatabaseBase::select() for details.
2657 * @return ResultWrapper
2659 public function insertSelect( $destTable, $srcTable, $varMap, $conds,
2660 $fname = 'DatabaseBase::insertSelect',
2661 $insertOptions = array(), $selectOptions = array() )
2663 $destTable = $this->tableName( $destTable );
2665 if ( is_array( $insertOptions ) ) {
2666 $insertOptions = implode( ' ', $insertOptions );
2669 if ( !is_array( $selectOptions ) ) {
2670 $selectOptions = array( $selectOptions );
2673 list( $startOpts, $useIndex, $tailOpts ) = $this->makeSelectOptions( $selectOptions );
2675 if ( is_array( $srcTable ) ) {
2676 $srcTable = implode( ',', array_map( array( &$this, 'tableName' ), $srcTable ) );
2677 } else {
2678 $srcTable = $this->tableName( $srcTable );
2681 $sql = "INSERT $insertOptions INTO $destTable (" . implode( ',', array_keys( $varMap ) ) . ')' .
2682 " SELECT $startOpts " . implode( ',', $varMap ) .
2683 " FROM $srcTable $useIndex ";
2685 if ( $conds != '*' ) {
2686 if ( is_array( $conds ) ) {
2687 $conds = $this->makeList( $conds, LIST_AND );
2689 $sql .= " WHERE $conds";
2692 $sql .= " $tailOpts";
2694 return $this->query( $sql, $fname );
2698 * Construct a LIMIT query with optional offset. This is used for query
2699 * pages. The SQL should be adjusted so that only the first $limit rows
2700 * are returned. If $offset is provided as well, then the first $offset
2701 * rows should be discarded, and the next $limit rows should be returned.
2702 * If the result of the query is not ordered, then the rows to be returned
2703 * are theoretically arbitrary.
2705 * $sql is expected to be a SELECT, if that makes a difference.
2707 * The version provided by default works in MySQL and SQLite. It will very
2708 * likely need to be overridden for most other DBMSes.
2710 * @param $sql String SQL query we will append the limit too
2711 * @param $limit Integer the SQL limit
2712 * @param $offset Integer|bool the SQL offset (default false)
2714 * @throws DBUnexpectedError
2715 * @return string
2717 public function limitResult( $sql, $limit, $offset = false ) {
2718 if ( !is_numeric( $limit ) ) {
2719 throw new DBUnexpectedError( $this, "Invalid non-numeric limit passed to limitResult()\n" );
2721 return "$sql LIMIT "
2722 . ( ( is_numeric( $offset ) && $offset != 0 ) ? "{$offset}," : "" )
2723 . "{$limit} ";
2727 * Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries
2728 * within the UNION construct.
2729 * @return Boolean
2731 public function unionSupportsOrderAndLimit() {
2732 return true; // True for almost every DB supported
2736 * Construct a UNION query
2737 * This is used for providing overload point for other DB abstractions
2738 * not compatible with the MySQL syntax.
2739 * @param $sqls Array: SQL statements to combine
2740 * @param $all Boolean: use UNION ALL
2741 * @return String: SQL fragment
2743 public function unionQueries( $sqls, $all ) {
2744 $glue = $all ? ') UNION ALL (' : ') UNION (';
2745 return '(' . implode( $glue, $sqls ) . ')';
2749 * Returns an SQL expression for a simple conditional. This doesn't need
2750 * to be overridden unless CASE isn't supported in your DBMS.
2752 * @param $cond string|array SQL expression which will result in a boolean value
2753 * @param $trueVal String: SQL expression to return if true
2754 * @param $falseVal String: SQL expression to return if false
2755 * @return String: SQL fragment
2757 public function conditional( $cond, $trueVal, $falseVal ) {
2758 if ( is_array( $cond ) ) {
2759 $cond = $this->makeList( $cond, LIST_AND );
2761 return " (CASE WHEN $cond THEN $trueVal ELSE $falseVal END) ";
2765 * Returns a comand for str_replace function in SQL query.
2766 * Uses REPLACE() in MySQL
2768 * @param $orig String: column to modify
2769 * @param $old String: column to seek
2770 * @param $new String: column to replace with
2772 * @return string
2774 public function strreplace( $orig, $old, $new ) {
2775 return "REPLACE({$orig}, {$old}, {$new})";
2779 * Determines how long the server has been up
2780 * STUB
2782 * @return int
2784 public function getServerUptime() {
2785 return 0;
2789 * Determines if the last failure was due to a deadlock
2790 * STUB
2792 * @return bool
2794 public function wasDeadlock() {
2795 return false;
2799 * Determines if the last failure was due to a lock timeout
2800 * STUB
2802 * @return bool
2804 public function wasLockTimeout() {
2805 return false;
2809 * Determines if the last query error was something that should be dealt
2810 * with by pinging the connection and reissuing the query.
2811 * STUB
2813 * @return bool
2815 public function wasErrorReissuable() {
2816 return false;
2820 * Determines if the last failure was due to the database being read-only.
2821 * STUB
2823 * @return bool
2825 public function wasReadOnlyError() {
2826 return false;
2830 * Perform a deadlock-prone transaction.
2832 * This function invokes a callback function to perform a set of write
2833 * queries. If a deadlock occurs during the processing, the transaction
2834 * will be rolled back and the callback function will be called again.
2836 * Usage:
2837 * $dbw->deadlockLoop( callback, ... );
2839 * Extra arguments are passed through to the specified callback function.
2841 * Returns whatever the callback function returned on its successful,
2842 * iteration, or false on error, for example if the retry limit was
2843 * reached.
2845 * @return bool
2847 public function deadlockLoop() {
2848 $this->begin( __METHOD__ );
2849 $args = func_get_args();
2850 $function = array_shift( $args );
2851 $oldIgnore = $this->ignoreErrors( true );
2852 $tries = DEADLOCK_TRIES;
2854 if ( is_array( $function ) ) {
2855 $fname = $function[0];
2856 } else {
2857 $fname = $function;
2860 do {
2861 $retVal = call_user_func_array( $function, $args );
2862 $error = $this->lastError();
2863 $errno = $this->lastErrno();
2864 $sql = $this->lastQuery();
2866 if ( $errno ) {
2867 if ( $this->wasDeadlock() ) {
2868 # Retry
2869 usleep( mt_rand( DEADLOCK_DELAY_MIN, DEADLOCK_DELAY_MAX ) );
2870 } else {
2871 $this->reportQueryError( $error, $errno, $sql, $fname );
2874 } while ( $this->wasDeadlock() && --$tries > 0 );
2876 $this->ignoreErrors( $oldIgnore );
2878 if ( $tries <= 0 ) {
2879 $this->rollback( __METHOD__ );
2880 $this->reportQueryError( $error, $errno, $sql, $fname );
2881 return false;
2882 } else {
2883 $this->commit( __METHOD__ );
2884 return $retVal;
2889 * Wait for the slave to catch up to a given master position.
2891 * @param $pos DBMasterPos object
2892 * @param $timeout Integer: the maximum number of seconds to wait for
2893 * synchronisation
2895 * @return integer: zero if the slave was past that position already,
2896 * greater than zero if we waited for some period of time, less than
2897 * zero if we timed out.
2899 public function masterPosWait( DBMasterPos $pos, $timeout ) {
2900 wfProfileIn( __METHOD__ );
2902 if ( !is_null( $this->mFakeSlaveLag ) ) {
2903 $wait = intval( ( $pos->pos - microtime( true ) + $this->mFakeSlaveLag ) * 1e6 );
2905 if ( $wait > $timeout * 1e6 ) {
2906 wfDebug( "Fake slave timed out waiting for $pos ($wait us)\n" );
2907 wfProfileOut( __METHOD__ );
2908 return -1;
2909 } elseif ( $wait > 0 ) {
2910 wfDebug( "Fake slave waiting $wait us\n" );
2911 usleep( $wait );
2912 wfProfileOut( __METHOD__ );
2913 return 1;
2914 } else {
2915 wfDebug( "Fake slave up to date ($wait us)\n" );
2916 wfProfileOut( __METHOD__ );
2917 return 0;
2921 wfProfileOut( __METHOD__ );
2923 # Real waits are implemented in the subclass.
2924 return 0;
2928 * Get the replication position of this slave
2930 * @return DBMasterPos, or false if this is not a slave.
2932 public function getSlavePos() {
2933 if ( !is_null( $this->mFakeSlaveLag ) ) {
2934 $pos = new MySQLMasterPos( 'fake', microtime( true ) - $this->mFakeSlaveLag );
2935 wfDebug( __METHOD__ . ": fake slave pos = $pos\n" );
2936 return $pos;
2937 } else {
2938 # Stub
2939 return false;
2944 * Get the position of this master
2946 * @return DBMasterPos, or false if this is not a master
2948 public function getMasterPos() {
2949 if ( $this->mFakeMaster ) {
2950 return new MySQLMasterPos( 'fake', microtime( true ) );
2951 } else {
2952 return false;
2957 * Run an anonymous function as soon as there is no transaction pending.
2958 * If there is a transaction and it is rolled back, then the callback is cancelled.
2959 * Callbacks must commit any transactions that they begin.
2961 * This is useful for updates to different systems or separate transactions are needed.
2963 * @since 1.20
2965 * @param Closure $callback
2967 final public function onTransactionIdle( Closure $callback ) {
2968 if ( $this->mTrxLevel ) {
2969 $this->mTrxIdleCallbacks[] = $callback;
2970 } else {
2971 $callback();
2976 * Actually run the "on transaction idle" callbacks.
2978 * @since 1.20
2980 protected function runOnTransactionIdleCallbacks() {
2981 $autoTrx = $this->getFlag( DBO_TRX ); // automatic begin() enabled?
2983 $e = null; // last exception
2984 do { // callbacks may add callbacks :)
2985 $callbacks = $this->mTrxIdleCallbacks;
2986 $this->mTrxIdleCallbacks = array(); // recursion guard
2987 foreach ( $callbacks as $callback ) {
2988 try {
2989 $this->clearFlag( DBO_TRX ); // make each query its own transaction
2990 $callback();
2991 $this->setFlag( $autoTrx ? DBO_TRX : 0 ); // restore automatic begin()
2992 } catch ( Exception $e ) {}
2994 } while ( count( $this->mTrxIdleCallbacks ) );
2996 if ( $e instanceof Exception ) {
2997 throw $e; // re-throw any last exception
3002 * Begin a transaction. If a transaction is already in progress, that transaction will be committed before the
3003 * new transaction is started.
3005 * Note that when the DBO_TRX flag is set (which is usually the case for web requests, but not for maintenance scripts),
3006 * any previous database query will have started a transaction automatically.
3008 * Nesting of transactions is not supported. Attempts to nest transactions will cause a warning, unless the current
3009 * transaction was started automatically because of the DBO_TRX flag.
3011 * @param $fname string
3013 final public function begin( $fname = 'DatabaseBase::begin' ) {
3014 global $wgDebugDBTransactions;
3016 if ( $this->mTrxLevel ) { // implicit commit
3017 if ( !$this->mTrxAutomatic ) {
3018 // We want to warn about inadvertently nested begin/commit pairs, but not about
3019 // auto-committing implicit transactions that were started by query() via DBO_TRX
3020 $msg = "$fname: Transaction already in progress (from {$this->mTrxFname}), " .
3021 " performing implicit commit!";
3022 wfWarn( $msg );
3023 wfLogDBError( $msg );
3024 } else {
3025 // if the transaction was automatic and has done write operations,
3026 // log it if $wgDebugDBTransactions is enabled.
3027 if ( $this->mTrxDoneWrites && $wgDebugDBTransactions ) {
3028 wfDebug( "$fname: Automatic transaction with writes in progress" .
3029 " (from {$this->mTrxFname}), performing implicit commit!\n" );
3033 $this->doCommit( $fname );
3034 $this->runOnTransactionIdleCallbacks();
3037 $this->doBegin( $fname );
3038 $this->mTrxFname = $fname;
3039 $this->mTrxDoneWrites = false;
3040 $this->mTrxAutomatic = false;
3044 * Issues the BEGIN command to the database server.
3046 * @see DatabaseBase::begin()
3047 * @param type $fname
3049 protected function doBegin( $fname ) {
3050 $this->query( 'BEGIN', $fname );
3051 $this->mTrxLevel = 1;
3055 * Commits a transaction previously started using begin().
3056 * If no transaction is in progress, a warning is issued.
3058 * Nesting of transactions is not supported.
3060 * @param $fname string
3061 * @param $flush String Flush flag, set to 'flush' to disable warnings about explicitly committing implicit
3062 * transactions, or calling commit when no transaction is in progress.
3063 * This will silently break any ongoing explicit transaction. Only set the flush flag if you are sure
3064 * that it is safe to ignore these warnings in your context.
3066 final public function commit( $fname = 'DatabaseBase::commit', $flush = '' ) {
3067 if ( $flush != 'flush' ) {
3068 if ( !$this->mTrxLevel ) {
3069 wfWarn( "$fname: No transaction to commit, something got out of sync!" );
3070 } elseif( $this->mTrxAutomatic ) {
3071 wfWarn( "$fname: Explicit commit of implicit transaction. Something may be out of sync!" );
3073 } else {
3074 if ( !$this->mTrxLevel ) {
3075 return; // nothing to do
3076 } elseif( !$this->mTrxAutomatic ) {
3077 wfWarn( "$fname: Flushing an explicit transaction, getting out of sync!" );
3081 $this->doCommit( $fname );
3082 $this->runOnTransactionIdleCallbacks();
3086 * Issues the COMMIT command to the database server.
3088 * @see DatabaseBase::commit()
3089 * @param type $fname
3091 protected function doCommit( $fname ) {
3092 if ( $this->mTrxLevel ) {
3093 $this->query( 'COMMIT', $fname );
3094 $this->mTrxLevel = 0;
3099 * Rollback a transaction previously started using begin().
3100 * If no transaction is in progress, a warning is issued.
3102 * No-op on non-transactional databases.
3104 * @param $fname string
3106 final public function rollback( $fname = 'DatabaseBase::rollback' ) {
3107 if ( !$this->mTrxLevel ) {
3108 wfWarn( "$fname: No transaction to rollback, something got out of sync!" );
3110 $this->doRollback( $fname );
3111 $this->mTrxIdleCallbacks = array(); // cancel
3115 * Issues the ROLLBACK command to the database server.
3117 * @see DatabaseBase::rollback()
3118 * @param type $fname
3120 protected function doRollback( $fname ) {
3121 if ( $this->mTrxLevel ) {
3122 $this->query( 'ROLLBACK', $fname, true );
3123 $this->mTrxLevel = 0;
3128 * Creates a new table with structure copied from existing table
3129 * Note that unlike most database abstraction functions, this function does not
3130 * automatically append database prefix, because it works at a lower
3131 * abstraction level.
3132 * The table names passed to this function shall not be quoted (this
3133 * function calls addIdentifierQuotes when needed).
3135 * @param $oldName String: name of table whose structure should be copied
3136 * @param $newName String: name of table to be created
3137 * @param $temporary Boolean: whether the new table should be temporary
3138 * @param $fname String: calling function name
3139 * @throws MWException
3140 * @return Boolean: true if operation was successful
3142 public function duplicateTableStructure( $oldName, $newName, $temporary = false,
3143 $fname = 'DatabaseBase::duplicateTableStructure' )
3145 throw new MWException(
3146 'DatabaseBase::duplicateTableStructure is not implemented in descendant class' );
3150 * List all tables on the database
3152 * @param $prefix string Only show tables with this prefix, e.g. mw_
3153 * @param $fname String: calling function name
3154 * @throws MWException
3156 function listTables( $prefix = null, $fname = 'DatabaseBase::listTables' ) {
3157 throw new MWException( 'DatabaseBase::listTables is not implemented in descendant class' );
3161 * Convert a timestamp in one of the formats accepted by wfTimestamp()
3162 * to the format used for inserting into timestamp fields in this DBMS.
3164 * The result is unquoted, and needs to be passed through addQuotes()
3165 * before it can be included in raw SQL.
3167 * @param $ts string|int
3169 * @return string
3171 public function timestamp( $ts = 0 ) {
3172 return wfTimestamp( TS_MW, $ts );
3176 * Convert a timestamp in one of the formats accepted by wfTimestamp()
3177 * to the format used for inserting into timestamp fields in this DBMS. If
3178 * NULL is input, it is passed through, allowing NULL values to be inserted
3179 * into timestamp fields.
3181 * The result is unquoted, and needs to be passed through addQuotes()
3182 * before it can be included in raw SQL.
3184 * @param $ts string|int
3186 * @return string
3188 public function timestampOrNull( $ts = null ) {
3189 if ( is_null( $ts ) ) {
3190 return null;
3191 } else {
3192 return $this->timestamp( $ts );
3197 * Take the result from a query, and wrap it in a ResultWrapper if
3198 * necessary. Boolean values are passed through as is, to indicate success
3199 * of write queries or failure.
3201 * Once upon a time, DatabaseBase::query() returned a bare MySQL result
3202 * resource, and it was necessary to call this function to convert it to
3203 * a wrapper. Nowadays, raw database objects are never exposed to external
3204 * callers, so this is unnecessary in external code. For compatibility with
3205 * old code, ResultWrapper objects are passed through unaltered.
3207 * @param $result bool|ResultWrapper
3209 * @return bool|ResultWrapper
3211 public function resultObject( $result ) {
3212 if ( empty( $result ) ) {
3213 return false;
3214 } elseif ( $result instanceof ResultWrapper ) {
3215 return $result;
3216 } elseif ( $result === true ) {
3217 // Successful write query
3218 return $result;
3219 } else {
3220 return new ResultWrapper( $this, $result );
3225 * Ping the server and try to reconnect if it there is no connection
3227 * @return bool Success or failure
3229 public function ping() {
3230 # Stub. Not essential to override.
3231 return true;
3235 * Get slave lag. Currently supported only by MySQL.
3237 * Note that this function will generate a fatal error on many
3238 * installations. Most callers should use LoadBalancer::safeGetLag()
3239 * instead.
3241 * @return int Database replication lag in seconds
3243 public function getLag() {
3244 return intval( $this->mFakeSlaveLag );
3248 * Return the maximum number of items allowed in a list, or 0 for unlimited.
3250 * @return int
3252 function maxListLen() {
3253 return 0;
3257 * Some DBMSs have a special format for inserting into blob fields, they
3258 * don't allow simple quoted strings to be inserted. To insert into such
3259 * a field, pass the data through this function before passing it to
3260 * DatabaseBase::insert().
3261 * @param $b string
3262 * @return string
3264 public function encodeBlob( $b ) {
3265 return $b;
3269 * Some DBMSs return a special placeholder object representing blob fields
3270 * in result objects. Pass the object through this function to return the
3271 * original string.
3272 * @param $b string
3273 * @return string
3275 public function decodeBlob( $b ) {
3276 return $b;
3280 * Override database's default behavior. $options include:
3281 * 'connTimeout' : Set the connection timeout value in seconds.
3282 * May be useful for very long batch queries such as
3283 * full-wiki dumps, where a single query reads out over
3284 * hours or days.
3286 * @param $options Array
3287 * @return void
3289 public function setSessionOptions( array $options ) {}
3292 * Read and execute SQL commands from a file.
3294 * Returns true on success, error string or exception on failure (depending
3295 * on object's error ignore settings).
3297 * @param $filename String: File name to open
3298 * @param bool|callable $lineCallback Optional function called before reading each line
3299 * @param bool|callable $resultCallback Optional function called for each MySQL result
3300 * @param bool|string $fname Calling function name or false if name should be
3301 * generated dynamically using $filename
3302 * @param bool|callable $inputCallback Callback: Optional function called for each complete line sent
3303 * @throws MWException
3304 * @throws Exception|MWException
3305 * @return bool|string
3307 public function sourceFile(
3308 $filename, $lineCallback = false, $resultCallback = false, $fname = false, $inputCallback = false
3310 wfSuppressWarnings();
3311 $fp = fopen( $filename, 'r' );
3312 wfRestoreWarnings();
3314 if ( false === $fp ) {
3315 throw new MWException( "Could not open \"{$filename}\".\n" );
3318 if ( !$fname ) {
3319 $fname = __METHOD__ . "( $filename )";
3322 try {
3323 $error = $this->sourceStream( $fp, $lineCallback, $resultCallback, $fname, $inputCallback );
3325 catch ( MWException $e ) {
3326 fclose( $fp );
3327 throw $e;
3330 fclose( $fp );
3332 return $error;
3336 * Get the full path of a patch file. Originally based on archive()
3337 * from updaters.inc. Keep in mind this always returns a patch, as
3338 * it fails back to MySQL if no DB-specific patch can be found
3340 * @param $patch String The name of the patch, like patch-something.sql
3341 * @return String Full path to patch file
3343 public function patchPath( $patch ) {
3344 global $IP;
3346 $dbType = $this->getType();
3347 if ( file_exists( "$IP/maintenance/$dbType/archives/$patch" ) ) {
3348 return "$IP/maintenance/$dbType/archives/$patch";
3349 } else {
3350 return "$IP/maintenance/archives/$patch";
3355 * Set variables to be used in sourceFile/sourceStream, in preference to the
3356 * ones in $GLOBALS. If an array is set here, $GLOBALS will not be used at
3357 * all. If it's set to false, $GLOBALS will be used.
3359 * @param $vars bool|array mapping variable name to value.
3361 public function setSchemaVars( $vars ) {
3362 $this->mSchemaVars = $vars;
3366 * Read and execute commands from an open file handle.
3368 * Returns true on success, error string or exception on failure (depending
3369 * on object's error ignore settings).
3371 * @param $fp Resource: File handle
3372 * @param $lineCallback Callback: Optional function called before reading each query
3373 * @param $resultCallback Callback: Optional function called for each MySQL result
3374 * @param $fname String: Calling function name
3375 * @param $inputCallback Callback: Optional function called for each complete query sent
3376 * @return bool|string
3378 public function sourceStream( $fp, $lineCallback = false, $resultCallback = false,
3379 $fname = 'DatabaseBase::sourceStream', $inputCallback = false )
3381 $cmd = '';
3383 while ( !feof( $fp ) ) {
3384 if ( $lineCallback ) {
3385 call_user_func( $lineCallback );
3388 $line = trim( fgets( $fp ) );
3390 if ( $line == '' ) {
3391 continue;
3394 if ( '-' == $line[0] && '-' == $line[1] ) {
3395 continue;
3398 if ( $cmd != '' ) {
3399 $cmd .= ' ';
3402 $done = $this->streamStatementEnd( $cmd, $line );
3404 $cmd .= "$line\n";
3406 if ( $done || feof( $fp ) ) {
3407 $cmd = $this->replaceVars( $cmd );
3409 if ( ( $inputCallback && call_user_func( $inputCallback, $cmd ) ) || !$inputCallback ) {
3410 $res = $this->query( $cmd, $fname );
3412 if ( $resultCallback ) {
3413 call_user_func( $resultCallback, $res, $this );
3416 if ( false === $res ) {
3417 $err = $this->lastError();
3418 return "Query \"{$cmd}\" failed with error code \"$err\".\n";
3421 $cmd = '';
3425 return true;
3429 * Called by sourceStream() to check if we've reached a statement end
3431 * @param $sql String SQL assembled so far
3432 * @param $newLine String New line about to be added to $sql
3433 * @return Bool Whether $newLine contains end of the statement
3435 public function streamStatementEnd( &$sql, &$newLine ) {
3436 if ( $this->delimiter ) {
3437 $prev = $newLine;
3438 $newLine = preg_replace( '/' . preg_quote( $this->delimiter, '/' ) . '$/', '', $newLine );
3439 if ( $newLine != $prev ) {
3440 return true;
3443 return false;
3447 * Database independent variable replacement. Replaces a set of variables
3448 * in an SQL statement with their contents as given by $this->getSchemaVars().
3450 * Supports '{$var}' `{$var}` and / *$var* / (without the spaces) style variables.
3452 * - '{$var}' should be used for text and is passed through the database's
3453 * addQuotes method.
3454 * - `{$var}` should be used for identifiers (eg: table and database names),
3455 * it is passed through the database's addIdentifierQuotes method which
3456 * can be overridden if the database uses something other than backticks.
3457 * - / *$var* / is just encoded, besides traditional table prefix and
3458 * table options its use should be avoided.
3460 * @param $ins String: SQL statement to replace variables in
3461 * @return String The new SQL statement with variables replaced
3463 protected function replaceSchemaVars( $ins ) {
3464 $vars = $this->getSchemaVars();
3465 foreach ( $vars as $var => $value ) {
3466 // replace '{$var}'
3467 $ins = str_replace( '\'{$' . $var . '}\'', $this->addQuotes( $value ), $ins );
3468 // replace `{$var}`
3469 $ins = str_replace( '`{$' . $var . '}`', $this->addIdentifierQuotes( $value ), $ins );
3470 // replace /*$var*/
3471 $ins = str_replace( '/*$' . $var . '*/', $this->strencode( $value ), $ins );
3473 return $ins;
3477 * Replace variables in sourced SQL
3479 * @param $ins string
3481 * @return string
3483 protected function replaceVars( $ins ) {
3484 $ins = $this->replaceSchemaVars( $ins );
3486 // Table prefixes
3487 $ins = preg_replace_callback( '!/\*(?:\$wgDBprefix|_)\*/([a-zA-Z_0-9]*)!',
3488 array( $this, 'tableNameCallback' ), $ins );
3490 // Index names
3491 $ins = preg_replace_callback( '!/\*i\*/([a-zA-Z_0-9]*)!',
3492 array( $this, 'indexNameCallback' ), $ins );
3494 return $ins;
3498 * Get schema variables. If none have been set via setSchemaVars(), then
3499 * use some defaults from the current object.
3501 * @return array
3503 protected function getSchemaVars() {
3504 if ( $this->mSchemaVars ) {
3505 return $this->mSchemaVars;
3506 } else {
3507 return $this->getDefaultSchemaVars();
3512 * Get schema variables to use if none have been set via setSchemaVars().
3514 * Override this in derived classes to provide variables for tables.sql
3515 * and SQL patch files.
3517 * @return array
3519 protected function getDefaultSchemaVars() {
3520 return array();
3524 * Table name callback
3526 * @param $matches array
3528 * @return string
3530 protected function tableNameCallback( $matches ) {
3531 return $this->tableName( $matches[1] );
3535 * Index name callback
3537 * @param $matches array
3539 * @return string
3541 protected function indexNameCallback( $matches ) {
3542 return $this->indexName( $matches[1] );
3546 * Check to see if a named lock is available. This is non-blocking.
3548 * @param $lockName String: name of lock to poll
3549 * @param $method String: name of method calling us
3550 * @return Boolean
3551 * @since 1.20
3553 public function lockIsFree( $lockName, $method ) {
3554 return true;
3558 * Acquire a named lock
3560 * Abstracted from Filestore::lock() so child classes can implement for
3561 * their own needs.
3563 * @param $lockName String: name of lock to aquire
3564 * @param $method String: name of method calling us
3565 * @param $timeout Integer: timeout
3566 * @return Boolean
3568 public function lock( $lockName, $method, $timeout = 5 ) {
3569 return true;
3573 * Release a lock.
3575 * @param $lockName String: Name of lock to release
3576 * @param $method String: Name of method calling us
3578 * @return int Returns 1 if the lock was released, 0 if the lock was not established
3579 * by this thread (in which case the lock is not released), and NULL if the named
3580 * lock did not exist
3582 public function unlock( $lockName, $method ) {
3583 return true;
3587 * Lock specific tables
3589 * @param $read Array of tables to lock for read access
3590 * @param $write Array of tables to lock for write access
3591 * @param $method String name of caller
3592 * @param $lowPriority bool Whether to indicate writes to be LOW PRIORITY
3594 * @return bool
3596 public function lockTables( $read, $write, $method, $lowPriority = true ) {
3597 return true;
3601 * Unlock specific tables
3603 * @param $method String the caller
3605 * @return bool
3607 public function unlockTables( $method ) {
3608 return true;
3612 * Delete a table
3613 * @param $tableName string
3614 * @param $fName string
3615 * @return bool|ResultWrapper
3616 * @since 1.18
3618 public function dropTable( $tableName, $fName = 'DatabaseBase::dropTable' ) {
3619 if( !$this->tableExists( $tableName, $fName ) ) {
3620 return false;
3622 $sql = "DROP TABLE " . $this->tableName( $tableName );
3623 if( $this->cascadingDeletes() ) {
3624 $sql .= " CASCADE";
3626 return $this->query( $sql, $fName );
3630 * Get search engine class. All subclasses of this need to implement this
3631 * if they wish to use searching.
3633 * @return String
3635 public function getSearchEngine() {
3636 return 'SearchEngineDummy';
3640 * Find out when 'infinity' is. Most DBMSes support this. This is a special
3641 * keyword for timestamps in PostgreSQL, and works with CHAR(14) as well
3642 * because "i" sorts after all numbers.
3644 * @return String
3646 public function getInfinity() {
3647 return 'infinity';
3651 * Encode an expiry time into the DBMS dependent format
3653 * @param $expiry String: timestamp for expiry, or the 'infinity' string
3654 * @return String
3656 public function encodeExpiry( $expiry ) {
3657 return ( $expiry == '' || $expiry == 'infinity' || $expiry == $this->getInfinity() )
3658 ? $this->getInfinity()
3659 : $this->timestamp( $expiry );
3663 * Decode an expiry time into a DBMS independent format
3665 * @param $expiry String: DB timestamp field value for expiry
3666 * @param $format integer: TS_* constant, defaults to TS_MW
3667 * @return String
3669 public function decodeExpiry( $expiry, $format = TS_MW ) {
3670 return ( $expiry == '' || $expiry == $this->getInfinity() )
3671 ? 'infinity'
3672 : wfTimestamp( $format, $expiry );
3676 * Allow or deny "big selects" for this session only. This is done by setting
3677 * the sql_big_selects session variable.
3679 * This is a MySQL-specific feature.
3681 * @param $value Mixed: true for allow, false for deny, or "default" to
3682 * restore the initial value
3684 public function setBigSelects( $value = true ) {
3685 // no-op
3689 * @since 1.19
3691 public function __toString() {
3692 return (string)$this->mConn;
3695 public function __destruct() {
3696 if ( count( $this->mTrxIdleCallbacks ) ) { // sanity
3697 trigger_error( "Transaction idle callbacks still pending." );