75 $this->lagDetectionMethod = isset( $params[
'lagDetectionMethod'] )
76 ? $params[
'lagDetectionMethod']
77 :
'Seconds_Behind_Master';
78 $this->lagDetectionOptions = isset( $params[
'lagDetectionOptions'] )
79 ? $params[
'lagDetectionOptions']
81 $this->useGTIDs = !empty( $params[
'useGTIDs' ] );
82 foreach ( [
'KeyPath',
'CertPath',
'CAPath',
'Ciphers' ]
as $name ) {
84 if ( isset( $params[$var] ) ) {
85 $this->$var = $params[$var];
88 $this->sqlMode = isset( $params[
'sqlMode'] ) ? $params[
'sqlMode'] :
'';
89 $this->utf8Mode = !empty( $params[
'utf8Mode'] );
91 parent::__construct( $params );
110 # Close/unset connection handle
113 $this->mServer = $server;
114 $this->mUser =
$user;
115 $this->mPassword = $password;
116 $this->mDBname = $dbName;
127 # Always log connection errors
128 if ( !$this->mConn ) {
132 $this->connLogger->error(
133 "Error connecting to {db_server}: {error}",
135 'method' => __METHOD__,
139 $this->connLogger->debug(
"DB connection error\n" .
140 "Server: $server, User: $user, Password: " .
141 substr( $password, 0, 3 ) .
"..., error: " . $error .
"\n" );
146 if ( $dbName !=
'' ) {
147 MediaWiki\suppressWarnings();
149 MediaWiki\restoreWarnings();
151 $this->queryLogger->error(
152 "Error selecting database {db_name} on server {db_server}",
154 'method' => __METHOD__,
157 $this->queryLogger->debug(
158 "Error selecting database $dbName on server {$this->mServer}" );
170 $set = [
'group_concat_max_len = 262144' ];
172 if ( is_string( $this->sqlMode ) ) {
173 $set[] =
'sql_mode = ' . $this->
addQuotes( $this->sqlMode );
177 foreach ( $this->mSessionVars
as $var => $val ) {
179 if ( !is_int( $val ) && !is_float( $val ) ) {
189 $this->queryLogger->error(
190 'Error setting MySQL variables on server {db_server} (check $wgSQLMode)',
192 'method' => __METHOD__,
196 'Error setting MySQL variables on server {db_server} (check $wgSQLMode)' );
200 $this->mOpened =
true;
210 if ( $this->utf8Mode ) {
226 abstract protected function mysqlConnect( $realServer );
244 MediaWiki\suppressWarnings();
246 MediaWiki\restoreWarnings();
269 MediaWiki\suppressWarnings();
271 MediaWiki\restoreWarnings();
278 if ( $errno == 2000 || $errno == 2013 ) {
281 'Error in fetchObject(): ' . htmlspecialchars( $this->
lastError() )
305 MediaWiki\suppressWarnings();
307 MediaWiki\restoreWarnings();
314 if ( $errno == 2000 || $errno == 2013 ) {
317 'Error in fetchRow(): ' . htmlspecialchars( $this->
lastError() )
341 MediaWiki\suppressWarnings();
343 MediaWiki\restoreWarnings();
452 if ( $this->mConn ) {
453 # Even if it's non-zero, it can still be invalid
454 MediaWiki\suppressWarnings();
459 MediaWiki\restoreWarnings();
464 $error .=
' (' . $this->mServer .
')';
476 abstract protected function mysqlError( $conn = null );
506 if (
$res ===
false ) {
514 foreach (
$res as $plan ) {
515 $rows *= $plan->rows > 0 ? $plan->rows : 1;
522 $table = $this->
tableName( $table,
'raw' );
523 if ( isset( $this->mSessionTempTables[$table] ) ) {
529 return $this->
query(
"SHOW TABLES $encLike",
$fname )->numRows() > 0;
539 $res = $this->
query(
"SELECT * FROM $table LIMIT 1", __METHOD__,
true );
544 for ( $i = 0; $i < $n; $i++ ) {
546 if ( $field == $meta->name ) {
573 # SHOW INDEX works in MySQL 3.23.58, but SHOW INDEXES does not.
574 # SHOW INDEX should work for 3.x and up:
575 # http://dev.mysql.com/doc/mysql/en/SHOW_INDEX.html
579 $sql =
'SHOW INDEX FROM ' . $table;
588 foreach (
$res as $row ) {
589 if ( $row->Key_name == $index ) {
612 if ( is_bool(
$s ) ) {
618 return parent::addQuotes(
$s );
630 return '`' . str_replace( [
"\0",
'`' ], [
'',
'``' ],
$s ) .
'`';
638 return strlen(
$name ) &&
$name[0] ==
'`' && substr(
$name, -1, 1 ) ==
'`';
660 $res = $this->
query(
'SHOW SLAVE STATUS', __METHOD__ );
661 $row =
$res ?
$res->fetchObject() :
false;
662 if ( $row && strval( $row->Seconds_Behind_Master ) !==
'' ) {
663 return intval( $row->Seconds_Behind_Master );
681 if ( !$masterInfo ) {
682 $this->queryLogger->error(
683 "Unable to query master of {db_server} for server ID",
685 'method' => __METHOD__
692 $conds = [
'server_id' => intval( $masterInfo[
'serverId'] ) ];
697 if (
$time !== null ) {
700 $timeUnix = (int)$dateTime->format(
'U' ) + $dateTime->format(
'u' ) / 1e6;
702 return max( $nowUnix - $timeUnix, 0.0 );
705 $this->queryLogger->error(
706 "Unable to find pt-heartbeat row for {db_server}",
708 'method' => __METHOD__
717 $key =
$cache->makeGlobalKey(
724 return $cache->getWithSetCallback(
726 $cache::TTL_INDEFINITE,
729 if ( !
$cache->lock( $key, 0, 10 ) ) {
740 $res = $conn->query(
'SELECT @@server_id AS id', __METHOD__ );
741 $row =
$res ?
$res->fetchObject() :
false;
742 $id = $row ? (int)$row->id : 0;
748 return $id ? [
'serverId' => $id,
'asOf' => time() ] :
false;
764 "SELECT ts FROM heartbeat.heartbeat WHERE $whereSQL ORDER BY ts DESC LIMIT 1"
766 $row =
$res ?
$res->fetchObject() :
false;
768 return [ $row ? $row->ts : null, microtime(
true ) ];
776 return parent::getApproximateLagStatus();
779 $key = $this->srvCache->makeGlobalKey(
'mysql-lag', $this->
getServer() );
780 $approxLag = $this->srvCache->get( $key );
782 $approxLag = parent::getApproximateLagStatus();
783 $this->srvCache->set( $key, $approxLag, 1 );
794 if ( $this->
getLBInfo(
'is static' ) ===
true ) {
796 } elseif ( $this->lastKnownReplicaPos && $this->lastKnownReplicaPos->hasReached( $pos ) ) {
801 if ( $this->useGTIDs && $pos->gtids ) {
803 $gtidArg = $this->
addQuotes( implode(
',', $pos->gtids ) );
804 $res = $this->
doQuery(
"SELECT MASTER_GTID_WAIT($gtidArg, $timeout)" );
807 $encFile = $this->
addQuotes( $pos->file );
808 $encPos = intval( $pos->pos );
809 $res = $this->
doQuery(
"SELECT MASTER_POS_WAIT($encFile, $encPos, $timeout)" );
814 throw new DBExpectedError( $this,
"Failed to query MASTER_POS_WAIT()" );
818 $status = ( $row[0] !== null ) ? intval( $row[0] ) : null;
825 if ( $replicationPos && !$replicationPos->channelsMatch( $pos ) ) {
826 $this->lastKnownReplicaPos = $replicationPos;
831 $this->lastKnownReplicaPos = $pos;
843 $res = $this->
query(
'SHOW SLAVE STATUS', __METHOD__ );
847 $pos = isset( $row->Exec_master_log_pos )
848 ? $row->Exec_master_log_pos
849 : $row->Exec_Master_Log_Pos;
851 if ( $this->useGTIDs ) {
852 $res = $this->
query(
"SHOW GLOBAL VARIABLES LIKE 'gtid_slave_pos'", __METHOD__ );
854 $gtidSet = $gtidRow ? $gtidRow->Value :
'';
859 return new MySQLMasterPos( $row->Relay_Master_Log_File, $pos, $gtidSet );
871 $res = $this->
query(
'SHOW MASTER STATUS', __METHOD__ );
876 if ( $this->useGTIDs ) {
877 $res = $this->
query(
"SHOW GLOBAL VARIABLES LIKE 'gtid_binlog_pos'", __METHOD__ );
879 $gtidSet = $gtidRow ? $gtidRow->Value :
'';
884 return new MySQLMasterPos( $row->File, $row->Position, $gtidSet );
891 $res = $this->
query(
"SHOW GLOBAL VARIABLES LIKE 'read_only'", __METHOD__ );
894 return $row ? ( strtolower( $row->Value ) ===
'on' ) :
false;
902 return "FORCE INDEX (" . $this->
indexName( $index ) .
")";
910 return "IGNORE INDEX (" . $this->
indexName( $index ) .
")";
917 return 'LOW_PRIORITY';
928 if ( strpos( $version,
'MariaDB' ) !==
false || strpos( $version,
'-maria-' ) !==
false ) {
929 return '[{{int:version-db-mariadb-url}} MariaDB]';
935 return '[{{int:version-db-mysql-url}} MySQL]';
945 if ( $this->serverVersion === null ) {
946 $this->serverVersion = $this->
selectField(
'',
'VERSION()',
'', __METHOD__ );
955 if ( isset( $options[
'connTimeout'] ) ) {
956 $timeout = (int)$options[
'connTimeout'];
957 $this->
query(
"SET net_read_timeout=$timeout" );
958 $this->
query(
"SET net_write_timeout=$timeout" );
968 if ( strtoupper( substr( $newLine, 0, 9 ) ) ==
'DELIMITER' ) {
969 preg_match(
'/^DELIMITER\s+(\S+)/', $newLine, $m );
970 $this->delimiter = $m[1];
974 return parent::streamStatementEnd( $sql, $newLine );
987 $result = $this->
query(
"SELECT IS_FREE_LOCK($encName) AS lockstatus", $method );
990 return ( $row->lockstatus == 1 );
999 public function lock( $lockName, $method, $timeout = 5 ) {
1001 $result = $this->
query(
"SELECT GET_LOCK($encName, $timeout) AS lockstatus", $method );
1004 if ( $row->lockstatus == 1 ) {
1005 parent::lock( $lockName, $method, $timeout );
1009 $this->queryLogger->warning( __METHOD__ .
" failed to acquire lock '$lockName'\n" );
1021 public function unlock( $lockName, $method ) {
1023 $result = $this->
query(
"SELECT RELEASE_LOCK($encName) as lockstatus", $method );
1026 if ( $row->lockstatus == 1 ) {
1027 parent::unlock( $lockName, $method );
1031 $this->queryLogger->warning( __METHOD__ .
" failed to release lock '$lockName'\n" );
1039 return ( strlen( $lockName ) > 64 ) ? sha1( $lockName ) : $lockName;
1053 public function lockTables( $read, $write, $method, $lowPriority =
true ) {
1056 foreach ( $write
as $table ) {
1058 ( $lowPriority ?
' LOW_PRIORITY' :
'' ) .
1062 foreach ( $read
as $table ) {
1063 $items[] = $this->
tableName( $table ) .
' READ';
1065 $sql =
"LOCK TABLES " . implode(
',', $items );
1066 $this->
query( $sql, $method );
1076 $this->
query(
"UNLOCK TABLES", $method );
1085 if (
$value ===
'default' ) {
1086 if ( $this->mDefaultBigSelects === null ) {
1087 # Function hasn't been called before so it must already be set to the default
1092 } elseif ( $this->mDefaultBigSelects === null ) {
1093 $this->mDefaultBigSelects =
1094 (bool)$this->
selectField(
false,
'@@sql_big_selects',
'', __METHOD__ );
1096 $encValue =
$value ?
'1' :
'0';
1097 $this->
query(
"SET sql_big_selects=$encValue", __METHOD__ );
1116 $delTable = $this->
tableName( $delTable );
1117 $joinTable = $this->
tableName( $joinTable );
1118 $sql =
"DELETE $delTable FROM $delTable, $joinTable WHERE $delVar=$joinVar ";
1120 if ( $conds !=
'*' ) {
1138 if ( !count( $rows ) ) {
1142 if ( !is_array( reset( $rows ) ) ) {
1147 $columns = array_keys( $rows[0] );
1149 $sql =
"INSERT INTO $table (" . implode(
',', $columns ) .
') VALUES ';
1151 foreach ( $rows
as $row ) {
1152 $rowTuples[] =
'(' . $this->
makeList( $row ) .
')';
1154 $sql .= implode(
',', $rowTuples );
1168 return (
int)
$vars[
'Uptime'];
1204 return $errno == 2013 || $errno == 2006;
1215 $tmp = $temporary ?
'TEMPORARY ' :
'';
1218 $query =
"CREATE $tmp TABLE $newName (LIKE $oldName)";
1236 $vars = get_object_vars( $table );
1237 $table = array_pop(
$vars );
1239 if ( !$prefix || strpos( $table, $prefix ) === 0 ) {
1240 $endArray[] = $table;
1252 public function dropTable( $tableName, $fName = __METHOD__ ) {
1253 if ( !$this->
tableExists( $tableName, $fName ) ) {
1257 return $this->
query(
"DROP TABLE IF EXISTS " . $this->
tableName( $tableName ), $fName );
1267 $res = $this->
query(
"SHOW STATUS LIKE '{$which}'" );
1270 foreach (
$res as $row ) {
1271 $status[$row->Variable_name] = $row->Value;
1291 $res = $this->
query(
'SHOW FULL TABLES WHERE TABLE_TYPE = "VIEW"' );
1293 foreach (
$res as $row ) {
1294 array_push( $allViews, $row->$propertyName );
1297 if ( is_null( $prefix ) || $prefix ===
'' ) {
1301 $filteredViews = [];
1302 foreach ( $allViews
as $viewName ) {
1304 if ( strpos( $viewName, $prefix ) === 0 ) {
1305 array_push( $filteredViews, $viewName );
1309 return $filteredViews;
lockTables($read, $write, $method, $lowPriority=true)
mysqlFieldType($res, $n)
Get the type of the specified field in a result.
mysqlDataSeek($res, $row)
Move internal result pointer.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
getServerUptime()
Determines how long the server has been up.
getMasterPos()
Get the position of the master from SHOW MASTER STATUS.
Database error base class.
the array() calling protocol came about after MediaWiki 1.4rc1.
namedLocksEnqueue()
Check to see if a named lock used by lock() use blocking queues.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
masterPosWait(DBMasterPos $pos, $timeout)
Wait for the replica DB to catch up to a given master position.
reportConnectionError($error= 'Unknown error')
select($table, $vars, $conds= '', $fname=__METHOD__, $options=[], $join_conds=[])
Execute a SELECT query constructed using the various parameters provided.
fieldType($res, $n)
mysql_field_type() wrapper
streamStatementEnd(&$sql, &$newLine)
mysqlConnect($realServer)
Open a connection to a MySQL server.
processing should stop and the error should be shown to the user * false
array $lagDetectionOptions
Method to detect replica DB lag.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
addIdentifierQuotes($s)
MySQL uses backticks for identifier quoting instead of the sql standard "double quotes".
wasLockTimeout()
Determines if the last failure was due to a lock timeout.
string $lagDetectionMethod
Method to detect replica DB lag.
BagOStuff $srvCache
APC cache.
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
unlock($lockName, $method)
FROM MYSQL DOCS: http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html#function_release...
isView($name, $prefix=null)
Differentiates between a TABLE and a VIEW.
upsert($table, array $rows, array $uniqueIndexes, array $set, $fname=__METHOD__)
getMysqlStatus($which="%")
Get status information from SHOW STATUS in an associative array.
mysqlRealEscapeString($s)
connectInitCharset()
Set the character set information right after connection.
mysqlFetchArray($res)
Fetch a result row as an associative and numeric array.
An object representing a master or replica DB position in a replicated setup.
mysqlFetchObject($res)
Fetch a result row as an object.
replace($table, $uniqueIndexes, $rows, $fname=__METHOD__)
tableName($name, $format= 'quoted')
Format a table name ready for use in constructing an SQL query.
lock($lockName, $method, $timeout=5)
selectDB($db)
Change the current database.
lastErrno()
Get the last error number.
wasConnectionError($errno)
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED!Use HtmlPageLinkRendererBegin instead.Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
DBMasterPos class for MySQL/MariaDB.
bool $utf8Mode
Use experimental UTF-8 transmission encoding.
nativeReplace($table, $rows, $fname)
REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE statement.
indexName($index)
Get the name of an index in a given table.
dropTable($tableName, $fName=__METHOD__)
string[] null $sslCiphers
listViews($prefix=null, $fname=__METHOD__)
Lists VIEWs in the database.
Base class for the more common types of database errors.
deleteJoin($delTable, $joinTable, $delVar, $joinVar, $conds, $fname=__METHOD__)
DELETE where the condition is a join.
listTables($prefix=null, $fname=__METHOD__)
List all tables on the database.
setSessionOptions(array $options)
close()
Closes a database connection.
getLBInfo($name=null)
Get properties passed down from the server info array of the load balancer.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
getHeartbeatData(array $conds)
getReplicaPos()
Get the position of the master from SHOW SLAVE STATUS.
mysqlError($conn=null)
Returns the text of the error message from previous MySQL operation.
tableExists($table, $fname=__METHOD__)
Query whether a given table exists.
makeList($a, $mode=self::LIST_COMMA)
Makes an encoded list of strings from an array.
getApproximateLagStatus()
duplicateTableStructure($oldName, $newName, $temporary=false, $fname=__METHOD__)
getLogContext(array $extras=[])
Create a log context to pass to PSR-3 logger functions.
__construct(array $params)
Additional $params include:
addQuotes($s)
Adds quotes and backslashes.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
mysqlNumRows($res)
Get number of rows in result.
string $sqlMode
sql_mode value to send on connection
mysqlSetCharset($charset)
Set the character set of the MySQL link.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
buildLike()
LIKE statement wrapper, receives a variable-length argument list with parts of pattern to match conta...
indexInfo($table, $index, $fname=__METHOD__)
Get information about an index into an object Returns false if the index does not exist...
mysqlNumFields($res)
Get number of fields in result.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
wasReadOnlyError()
Determines if the last failure was due to the database being read-only.
setBigSelects($value=true)
string null $serverVersion
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined...
wasDeadlock()
Determines if the last failure was due to a deadlock.
Database abstraction object for MySQL.
getLag()
Get replica DB lag.
mysqlFieldName($res, $n)
Get the name of the specified field in a result.
getServer()
Get the server hostname or IP address.
estimateRowCount($table, $vars= '*', $conds= '', $fname=__METHOD__, $options=[])
Estimate rows in dataset Returns estimated count, based on EXPLAIN output Takes same arguments as Dat...
wasErrorReissuable()
Determines if the last query error was due to a dropped connection and should be dealt with by pingin...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
selectField($table, $var, $cond= '', $fname=__METHOD__, $options=[])
A SELECT wrapper which returns a single field from a single result row.
lockIsFree($lockName, $method)
Check to see if a named lock is available.
Result wrapper for grabbing data queried from an IDatabase object.
mysqlFreeResult($res)
Free result memory.
MysqlMasterPos $lastKnownReplicaPos
isQuotedIdentifier($name)
bool null $mDefaultBigSelects
fieldInfo($table, $field)
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
doQuery($sql)
The DBMS-dependent part of query()
ignoreIndexClause($index)
mysqlFetchField($res, $n)
Get column information from a result.
bool $useGTIDs
bool Whether to use GTID methods
see documentation in includes Linker php for Linker::makeImageLink & $time
open($server, $user, $password, $dbName)
query($sql, $fname=__METHOD__, $tempIgnore=false)
Run an SQL query and return the result.
Allows to change the fields on the form that will be generated $name