MediaWiki  REL1_31
DBQueryError.php
Go to the documentation of this file.
1 <?php
22 namespace Wikimedia\Rdbms;
23 
29  public $error;
31  public $errno;
33  public $sql;
35  public $fname;
36 
45  public function __construct( IDatabase $db, $error, $errno, $sql, $fname, $message = null ) {
46  if ( $message === null ) {
47  if ( $db instanceof Database && $db->wasConnectionError( $errno ) ) {
48  $message = "A connection error occured. \n" .
49  "Query: $sql\n" .
50  "Function: $fname\n" .
51  "Error: $errno $error\n";
52  } else {
53  $message = "A database query error has occurred. Did you forget to run " .
54  "your application's database schema updater after upgrading? \n" .
55  "Query: $sql\n" .
56  "Function: $fname\n" .
57  "Error: $errno $error\n";
58  }
59  }
60 
61  parent::__construct( $db, $message );
62 
63  $this->error = $error;
64  $this->errno = $errno;
65  $this->sql = $sql;
66  $this->fname = $fname;
67  }
68 }
69 
70 class_alias( DBQueryError::class, 'DBQueryError' );
Wikimedia\Rdbms\DBError\$db
IDatabase null $db
Definition: DBError.php:32
Wikimedia\Rdbms\Database
Relational database abstraction object.
Definition: Database.php:48
error
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
Definition: hooks.txt:2612
Wikimedia\Rdbms\DBQueryError\$errno
int $errno
Definition: DBQueryError.php:31
Wikimedia\Rdbms
Definition: ChronologyProtector.php:24
Wikimedia\Rdbms\DBQueryError\$fname
string $fname
Definition: DBQueryError.php:35
php
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
Definition: injection.txt:37
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:38
sql
SQLite shares the MySQL schema file at maintenance tables sql
Definition: sqlite.txt:1
Wikimedia\Rdbms\DBQueryError
Definition: DBQueryError.php:27
Wikimedia\Rdbms\DBQueryError\$sql
string $sql
Definition: DBQueryError.php:33
Wikimedia\Rdbms\DBQueryError\__construct
__construct(IDatabase $db, $error, $errno, $sql, $fname, $message=null)
Definition: DBQueryError.php:45
Wikimedia\Rdbms\DBExpectedError
Base class for the more common types of database errors.
Definition: DBExpectedError.php:32
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:56
Wikimedia\Rdbms\DBQueryError\$error
string $error
Definition: DBQueryError.php:29