09a8090611dc78414285128a8449bab6d0b69332
[lhc/web/wiklou.git] / includes / libs / rdbms / database / IDatabase.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20 namespace Wikimedia\Rdbms;
21
22 use InvalidArgumentException;
23 use Wikimedia\ScopedCallback;
24 use RuntimeException;
25 use stdClass;
26
27 /**
28 * @defgroup Database Database
29 * This group deals with database interface functions
30 * and query specifics/optimisations.
31 */
32 /**
33 * Basic database interface for live and lazy-loaded relation database handles
34 *
35 * @note IDatabase and DBConnRef should be updated to reflect any changes
36 * @ingroup Database
37 */
38 interface IDatabase {
39 /** @var int Callback triggered immediately due to no active transaction */
40 const TRIGGER_IDLE = 1;
41 /** @var int Callback triggered by COMMIT */
42 const TRIGGER_COMMIT = 2;
43 /** @var int Callback triggered by ROLLBACK */
44 const TRIGGER_ROLLBACK = 3;
45
46 /** @var string Transaction is requested by regular caller outside of the DB layer */
47 const TRANSACTION_EXPLICIT = '';
48 /** @var string Transaction is requested internally via DBO_TRX/startAtomic() */
49 const TRANSACTION_INTERNAL = 'implicit';
50
51 /** @var string Atomic section is not cancelable */
52 const ATOMIC_NOT_CANCELABLE = '';
53 /** @var string Atomic section is cancelable */
54 const ATOMIC_CANCELABLE = 'cancelable';
55
56 /** @var string Commit/rollback is from outside the IDatabase handle and connection manager */
57 const FLUSHING_ONE = '';
58 /** @var string Commit/rollback is from the connection manager for the IDatabase handle */
59 const FLUSHING_ALL_PEERS = 'flush';
60 /** @var string Commit/rollback is from the IDatabase handle internally */
61 const FLUSHING_INTERNAL = 'flush-internal';
62
63 /** @var string Do not remember the prior flags */
64 const REMEMBER_NOTHING = '';
65 /** @var string Remember the prior flags */
66 const REMEMBER_PRIOR = 'remember';
67 /** @var string Restore to the prior flag state */
68 const RESTORE_PRIOR = 'prior';
69 /** @var string Restore to the initial flag state */
70 const RESTORE_INITIAL = 'initial';
71
72 /** @var string Estimate total time (RTT, scanning, waiting on locks, applying) */
73 const ESTIMATE_TOTAL = 'total';
74 /** @var string Estimate time to apply (scanning, applying) */
75 const ESTIMATE_DB_APPLY = 'apply';
76
77 /** @var int Combine list with comma delimeters */
78 const LIST_COMMA = 0;
79 /** @var int Combine list with AND clauses */
80 const LIST_AND = 1;
81 /** @var int Convert map into a SET clause */
82 const LIST_SET = 2;
83 /** @var int Treat as field name and do not apply value escaping */
84 const LIST_NAMES = 3;
85 /** @var int Combine list with OR clauses */
86 const LIST_OR = 4;
87
88 /** @var int Enable debug logging */
89 const DBO_DEBUG = 1;
90 /** @var int Disable query buffering (only one result set can be iterated at a time) */
91 const DBO_NOBUFFER = 2;
92 /** @var int Ignore query errors (internal use only!) */
93 const DBO_IGNORE = 4;
94 /** @var int Automatically start a transaction before running a query if none is active */
95 const DBO_TRX = 8;
96 /** @var int Use DBO_TRX in non-CLI mode */
97 const DBO_DEFAULT = 16;
98 /** @var int Use DB persistent connections if possible */
99 const DBO_PERSISTENT = 32;
100 /** @var int DBA session mode; mostly for Oracle */
101 const DBO_SYSDBA = 64;
102 /** @var int Schema file mode; mostly for Oracle */
103 const DBO_DDLMODE = 128;
104 /** @var int Enable SSL/TLS in connection protocol */
105 const DBO_SSL = 256;
106 /** @var int Enable compression in connection protocol */
107 const DBO_COMPRESS = 512;
108
109 /** @var int Ignore query errors and return false when they happen */
110 const QUERY_SILENCE_ERRORS = 1; // b/c for 1.32 query() argument; note that (int)true = 1
111 /**
112 * @var int Treat the TEMPORARY table from the given CREATE query as if it is
113 * permanent as far as write tracking is concerned. This is useful for testing.
114 */
115 const QUERY_PSEUDO_PERMANENT = 2;
116 /** @var int Enforce that a query does not make effective writes */
117 const QUERY_REPLICA_ROLE = 4;
118 /** @var int Ignore the current presence of any DBO_TRX flag */
119 const QUERY_IGNORE_DBO_TRX = 8;
120
121 /** @var bool Parameter to unionQueries() for UNION ALL */
122 const UNION_ALL = true;
123 /** @var bool Parameter to unionQueries() for UNION DISTINCT */
124 const UNION_DISTINCT = false;
125
126 /**
127 * A string describing the current software version, and possibly
128 * other details in a user-friendly way. Will be listed on Special:Version, etc.
129 * Use getServerVersion() to get machine-friendly information.
130 *
131 * @return string Version information from the database server
132 */
133 public function getServerInfo();
134
135 /**
136 * Turns buffering of SQL result sets on (true) or off (false). Default is "on".
137 *
138 * Unbuffered queries are very troublesome in MySQL:
139 *
140 * - If another query is executed while the first query is being read
141 * out, the first query is killed. This means you can't call normal
142 * Database functions while you are reading an unbuffered query result
143 * from a normal Database connection.
144 *
145 * - Unbuffered queries cause the MySQL server to use large amounts of
146 * memory and to hold broad locks which block other queries.
147 *
148 * If you want to limit client-side memory, it's almost always better to
149 * split up queries into batches using a LIMIT clause than to switch off
150 * buffering.
151 *
152 * @param null|bool $buffer
153 * @return null|bool The previous value of the flag
154 */
155 public function bufferResults( $buffer = null );
156
157 /**
158 * Gets the current transaction level.
159 *
160 * Historically, transactions were allowed to be "nested". This is no
161 * longer supported, so this function really only returns a boolean.
162 *
163 * @return int The previous value
164 */
165 public function trxLevel();
166
167 /**
168 * Get the UNIX timestamp of the time that the transaction was established
169 *
170 * This can be used to reason about the staleness of SELECT data
171 * in REPEATABLE-READ transaction isolation level.
172 *
173 * @return float|null Returns null if there is not active transaction
174 * @since 1.25
175 */
176 public function trxTimestamp();
177
178 /**
179 * @return bool Whether an explicit transaction or atomic sections are still open
180 * @since 1.28
181 */
182 public function explicitTrxActive();
183
184 /**
185 * Assert that all explicit transactions or atomic sections have been closed.
186 * @throws DBTransactionError
187 * @since 1.32
188 */
189 public function assertNoOpenTransactions();
190
191 /**
192 * Get/set the table prefix.
193 * @param string|null $prefix The table prefix to set, or omitted to leave it unchanged.
194 * @return string The previous table prefix
195 * @throws DBUnexpectedError
196 */
197 public function tablePrefix( $prefix = null );
198
199 /**
200 * Get/set the db schema.
201 * @param string|null $schema The database schema to set, or omitted to leave it unchanged.
202 * @return string The previous db schema
203 */
204 public function dbSchema( $schema = null );
205
206 /**
207 * Get properties passed down from the server info array of the load
208 * balancer.
209 *
210 * @param string|null $name The entry of the info array to get, or null to get the
211 * whole array
212 *
213 * @return array|mixed|null
214 */
215 public function getLBInfo( $name = null );
216
217 /**
218 * Set the LB info array, or a member of it. If called with one parameter,
219 * the LB info array is set to that parameter. If it is called with two
220 * parameters, the member with the given name is set to the given value.
221 *
222 * @param array|string $name
223 * @param array|null $value
224 */
225 public function setLBInfo( $name, $value = null );
226
227 /**
228 * Set a lazy-connecting DB handle to the master DB (for replication status purposes)
229 *
230 * @param IDatabase $conn
231 * @since 1.27
232 */
233 public function setLazyMasterHandle( IDatabase $conn );
234
235 /**
236 * Returns true if this database does an implicit sort when doing GROUP BY
237 *
238 * @return bool
239 * @deprecated Since 1.30; only use grouped or aggregated fields in the SELECT
240 */
241 public function implicitGroupby();
242
243 /**
244 * Returns true if this database does an implicit order by when the column has an index
245 * For example: SELECT page_title FROM page LIMIT 1
246 *
247 * @return bool
248 */
249 public function implicitOrderby();
250
251 /**
252 * Return the last query that sent on account of IDatabase::query()
253 * @return string SQL text or empty string if there was no such query
254 */
255 public function lastQuery();
256
257 /**
258 * Returns true if the connection may have been used for write queries.
259 * Should return true if unsure.
260 *
261 * @return bool
262 * @deprecated Since 1.31; use lastDoneWrites()
263 */
264 public function doneWrites();
265
266 /**
267 * Returns the last time the connection may have been used for write queries.
268 * Should return a timestamp if unsure.
269 *
270 * @return int|float UNIX timestamp or false
271 * @since 1.24
272 */
273 public function lastDoneWrites();
274
275 /**
276 * @return bool Whether there is a transaction open with possible write queries
277 * @since 1.27
278 */
279 public function writesPending();
280
281 /**
282 * @return bool Whether there is a transaction open with pre-commit callbacks pending
283 * @since 1.32
284 */
285 public function preCommitCallbacksPending();
286
287 /**
288 * Whether there is a transaction open with either possible write queries
289 * or unresolved pre-commit/commit/resolution callbacks pending
290 *
291 * This does *not* count recurring callbacks, e.g. from setTransactionListener().
292 *
293 * @return bool
294 */
295 public function writesOrCallbacksPending();
296
297 /**
298 * Get the time spend running write queries for this transaction
299 *
300 * High times could be due to scanning, updates, locking, and such
301 *
302 * @param string $type IDatabase::ESTIMATE_* constant [default: ESTIMATE_ALL]
303 * @return float|bool Returns false if not transaction is active
304 * @since 1.26
305 */
306 public function pendingWriteQueryDuration( $type = self::ESTIMATE_TOTAL );
307
308 /**
309 * Get the list of method names that did write queries for this transaction
310 *
311 * @return array
312 * @since 1.27
313 */
314 public function pendingWriteCallers();
315
316 /**
317 * Get the number of affected rows from pending write queries
318 *
319 * @return int
320 * @since 1.30
321 */
322 public function pendingWriteRowsAffected();
323
324 /**
325 * Is a connection to the database open?
326 * @return bool
327 */
328 public function isOpen();
329
330 /**
331 * Set a flag for this connection
332 *
333 * @param int $flag DBO_* constants from Defines.php:
334 * - DBO_DEBUG: output some debug info (same as debug())
335 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
336 * - DBO_TRX: automatically start transactions
337 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
338 * and removes it in command line mode
339 * - DBO_PERSISTENT: use persistant database connection
340 * @param string $remember IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING]
341 */
342 public function setFlag( $flag, $remember = self::REMEMBER_NOTHING );
343
344 /**
345 * Clear a flag for this connection
346 *
347 * @param int $flag DBO_* constants from Defines.php:
348 * - DBO_DEBUG: output some debug info (same as debug())
349 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
350 * - DBO_TRX: automatically start transactions
351 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
352 * and removes it in command line mode
353 * - DBO_PERSISTENT: use persistant database connection
354 * @param string $remember IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING]
355 */
356 public function clearFlag( $flag, $remember = self::REMEMBER_NOTHING );
357
358 /**
359 * Restore the flags to their prior state before the last setFlag/clearFlag call
360 *
361 * @param string $state IDatabase::RESTORE_* constant. [default: RESTORE_PRIOR]
362 * @since 1.28
363 */
364 public function restoreFlags( $state = self::RESTORE_PRIOR );
365
366 /**
367 * Returns a boolean whether the flag $flag is set for this connection
368 *
369 * @param int $flag DBO_* constants from Defines.php:
370 * - DBO_DEBUG: output some debug info (same as debug())
371 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
372 * - DBO_TRX: automatically start transactions
373 * - DBO_PERSISTENT: use persistant database connection
374 * @return bool
375 */
376 public function getFlag( $flag );
377
378 /**
379 * Return the currently selected domain ID
380 *
381 * Null components (database/schema) might change once a connection is established
382 *
383 * @return string
384 */
385 public function getDomainID();
386
387 /**
388 * Alias for getDomainID()
389 *
390 * @return string
391 * @deprecated 1.30
392 */
393 public function getWikiID();
394
395 /**
396 * Get the type of the DBMS, as it appears in $wgDBtype.
397 *
398 * @return string
399 */
400 public function getType();
401
402 /**
403 * Fetch the next row from the given result object, in object form.
404 * Fields can be retrieved with $row->fieldname, with fields acting like
405 * member variables.
406 * If no more rows are available, false is returned.
407 *
408 * @param IResultWrapper|stdClass $res Object as returned from IDatabase::query(), etc.
409 * @return stdClass|bool
410 * @throws DBUnexpectedError Thrown if the database returns an error
411 */
412 public function fetchObject( $res );
413
414 /**
415 * Fetch the next row from the given result object, in associative array
416 * form. Fields are retrieved with $row['fieldname'].
417 * If no more rows are available, false is returned.
418 *
419 * @param IResultWrapper $res Result object as returned from IDatabase::query(), etc.
420 * @return array|bool
421 * @throws DBUnexpectedError Thrown if the database returns an error
422 */
423 public function fetchRow( $res );
424
425 /**
426 * Get the number of rows in a query result. If the query did not return
427 * any rows (for example, if it was a write query), this returns zero.
428 *
429 * @param mixed $res A SQL result
430 * @return int
431 */
432 public function numRows( $res );
433
434 /**
435 * Get the number of fields in a result object
436 * @see https://www.php.net/mysql_num_fields
437 *
438 * @param mixed $res A SQL result
439 * @return int
440 */
441 public function numFields( $res );
442
443 /**
444 * Get a field name in a result object
445 * @see https://www.php.net/mysql_field_name
446 *
447 * @param mixed $res A SQL result
448 * @param int $n
449 * @return string
450 */
451 public function fieldName( $res, $n );
452
453 /**
454 * Get the inserted value of an auto-increment row
455 *
456 * This should only be called after an insert that used an auto-incremented
457 * value. If no such insert was previously done in the current database
458 * session, the return value is undefined.
459 *
460 * @return int
461 */
462 public function insertId();
463
464 /**
465 * Change the position of the cursor in a result object
466 * @see https://www.php.net/mysql_data_seek
467 *
468 * @param mixed $res A SQL result
469 * @param int $row
470 */
471 public function dataSeek( $res, $row );
472
473 /**
474 * Get the last error number
475 * @see https://www.php.net/mysql_errno
476 *
477 * @return int
478 */
479 public function lastErrno();
480
481 /**
482 * Get a description of the last error
483 * @see https://www.php.net/mysql_error
484 *
485 * @return string
486 */
487 public function lastError();
488
489 /**
490 * Get the number of rows affected by the last write query
491 * @see https://www.php.net/mysql_affected_rows
492 *
493 * @return int
494 */
495 public function affectedRows();
496
497 /**
498 * Returns a wikitext link to the DB's website, e.g.,
499 * return "[https://www.mysql.com/ MySQL]";
500 * Should at least contain plain text, if for some reason
501 * your database has no website.
502 *
503 * @return string Wikitext of a link to the server software's web site
504 */
505 public function getSoftwareLink();
506
507 /**
508 * A string describing the current software version, like from
509 * mysql_get_server_info().
510 *
511 * @return string Version information from the database server.
512 */
513 public function getServerVersion();
514
515 /**
516 * Close the database connection
517 *
518 * This should only be called after any transactions have been resolved,
519 * aside from read-only automatic transactions (assuming no callbacks are registered).
520 * If a transaction is still open anyway, it will be rolled back.
521 *
522 * @throws DBError
523 * @return bool Operation success. true if already closed.
524 */
525 public function close();
526
527 /**
528 * Run an SQL query and return the result. Normally throws a DBQueryError
529 * on failure. If errors are ignored, returns false instead.
530 *
531 * If a connection loss is detected, then an attempt to reconnect will be made.
532 * For queries that involve no larger transactions or locks, they will be re-issued
533 * for convenience, provided the connection was re-established.
534 *
535 * In new code, the query wrappers select(), insert(), update(), delete(),
536 * etc. should be used where possible, since they give much better DBMS
537 * independence and automatically quote or validate user input in a variety
538 * of contexts. This function is generally only useful for queries which are
539 * explicitly DBMS-dependent and are unsupported by the query wrappers, such
540 * as CREATE TABLE.
541 *
542 * However, the query wrappers themselves should call this function.
543 *
544 * @param string $sql SQL query
545 * @param string $fname Name of the calling function, for profiling/SHOW PROCESSLIST
546 * comment (you can use __METHOD__ or add some extra info)
547 * @param int $flags Bitfield of IDatabase::QUERY_* constants. Note that suppression
548 * of errors is best handled by try/catch rather than using one of these flags.
549 * @return bool|IResultWrapper True for a successful write query, IResultWrapper object
550 * for a successful read query, or false on failure if QUERY_SILENCE_ERRORS is set.
551 * @throws DBError
552 */
553 public function query( $sql, $fname = __METHOD__, $flags = 0 );
554
555 /**
556 * Free a result object returned by query() or select(). It's usually not
557 * necessary to call this, just use unset() or let the variable holding
558 * the result object go out of scope.
559 *
560 * @param mixed $res A SQL result
561 */
562 public function freeResult( $res );
563
564 /**
565 * A SELECT wrapper which returns a single field from a single result row.
566 *
567 * Usually throws a DBQueryError on failure. If errors are explicitly
568 * ignored, returns false on failure.
569 *
570 * If no result rows are returned from the query, false is returned.
571 *
572 * @param string|array $table Table name. See IDatabase::select() for details.
573 * @param string $var The field name to select. This must be a valid SQL
574 * fragment: do not use unvalidated user input.
575 * @param string|array $cond The condition array. See IDatabase::select() for details.
576 * @param string $fname The function name of the caller.
577 * @param string|array $options The query options. See IDatabase::select() for details.
578 * @param string|array $join_conds The query join conditions. See IDatabase::select() for details.
579 *
580 * @return mixed The value from the field
581 * @throws DBError
582 */
583 public function selectField(
584 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
585 );
586
587 /**
588 * A SELECT wrapper which returns a list of single field values from result rows.
589 *
590 * Usually throws a DBQueryError on failure. If errors are explicitly
591 * ignored, returns false on failure.
592 *
593 * If no result rows are returned from the query, false is returned.
594 *
595 * @param string|array $table Table name. See IDatabase::select() for details.
596 * @param string $var The field name to select. This must be a valid SQL
597 * fragment: do not use unvalidated user input.
598 * @param string|array $cond The condition array. See IDatabase::select() for details.
599 * @param string $fname The function name of the caller.
600 * @param string|array $options The query options. See IDatabase::select() for details.
601 * @param string|array $join_conds The query join conditions. See IDatabase::select() for details.
602 *
603 * @return array The values from the field in the order they were returned from the DB
604 * @throws DBError
605 * @since 1.25
606 */
607 public function selectFieldValues(
608 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
609 );
610
611 /**
612 * Execute a SELECT query constructed using the various parameters provided.
613 * See below for full details of the parameters.
614 *
615 * @param string|array $table Table name(s)
616 *
617 * May be either an array of table names, or a single string holding a table
618 * name. If an array is given, table aliases can be specified, for example:
619 *
620 * [ 'a' => 'user' ]
621 *
622 * This includes the user table in the query, with the alias "a" available
623 * for use in field names (e.g. a.user_name).
624 *
625 * A derived table, defined by the result of selectSQLText(), requires an alias
626 * key and a Subquery instance value which wraps the SQL query, for example:
627 *
628 * [ 'c' => new Subquery( 'SELECT ...' ) ]
629 *
630 * Joins using parentheses for grouping (since MediaWiki 1.31) may be
631 * constructed using nested arrays. For example,
632 *
633 * [ 'tableA', 'nestedB' => [ 'tableB', 'b2' => 'tableB2' ] ]
634 *
635 * along with `$join_conds` like
636 *
637 * [ 'b2' => [ 'JOIN', 'b_id = b2_id' ], 'nestedB' => [ 'LEFT JOIN', 'b_a = a_id' ] ]
638 *
639 * will produce SQL something like
640 *
641 * FROM tableA LEFT JOIN (tableB JOIN tableB2 AS b2 ON (b_id = b2_id)) ON (b_a = a_id)
642 *
643 * All of the table names given here are automatically run through
644 * Database::tableName(), which causes the table prefix (if any) to be
645 * added, and various other table name mappings to be performed.
646 *
647 * Do not use untrusted user input as a table name. Alias names should
648 * not have characters outside of the Basic multilingual plane.
649 *
650 * @param string|array $vars Field name(s)
651 *
652 * May be either a field name or an array of field names. The field names
653 * can be complete fragments of SQL, for direct inclusion into the SELECT
654 * query. If an array is given, field aliases can be specified, for example:
655 *
656 * [ 'maxrev' => 'MAX(rev_id)' ]
657 *
658 * This includes an expression with the alias "maxrev" in the query.
659 *
660 * If an expression is given, care must be taken to ensure that it is
661 * DBMS-independent.
662 *
663 * Untrusted user input must not be passed to this parameter.
664 *
665 * @param string|array $conds
666 *
667 * May be either a string containing a single condition, or an array of
668 * conditions. If an array is given, the conditions constructed from each
669 * element are combined with AND.
670 *
671 * Array elements may take one of two forms:
672 *
673 * - Elements with a numeric key are interpreted as raw SQL fragments.
674 * - Elements with a string key are interpreted as equality conditions,
675 * where the key is the field name.
676 * - If the value of such an array element is a scalar (such as a
677 * string), it will be treated as data and thus quoted appropriately.
678 * If it is null, an IS NULL clause will be added.
679 * - If the value is an array, an IN (...) clause will be constructed
680 * from its non-null elements, and an IS NULL clause will be added
681 * if null is present, such that the field may match any of the
682 * elements in the array. The non-null elements will be quoted.
683 *
684 * Note that expressions are often DBMS-dependent in their syntax.
685 * DBMS-independent wrappers are provided for constructing several types of
686 * expression commonly used in condition queries. See:
687 * - IDatabase::buildLike()
688 * - IDatabase::conditional()
689 *
690 * Untrusted user input is safe in the values of string keys, however untrusted
691 * input must not be used in the array key names or in the values of numeric keys.
692 * Escaping of untrusted input used in values of numeric keys should be done via
693 * IDatabase::addQuotes()
694 *
695 * Use an empty array, string, or '*' to update all rows.
696 *
697 * @param string $fname Caller function name
698 *
699 * @param string|array $options Query options
700 *
701 * Optional: Array of query options. Boolean options are specified by
702 * including them in the array as a string value with a numeric key, for
703 * example:
704 *
705 * [ 'FOR UPDATE' ]
706 *
707 * The supported options are:
708 *
709 * - OFFSET: Skip this many rows at the start of the result set. OFFSET
710 * with LIMIT can theoretically be used for paging through a result set,
711 * but this is discouraged for performance reasons.
712 *
713 * - LIMIT: Integer: return at most this many rows. The rows are sorted
714 * and then the first rows are taken until the limit is reached. LIMIT
715 * is applied to a result set after OFFSET.
716 *
717 * - FOR UPDATE: Boolean: lock the returned rows so that they can't be
718 * changed until the next COMMIT. Cannot be used with aggregate functions
719 * (COUNT, MAX, etc., but also DISTINCT).
720 *
721 * - DISTINCT: Boolean: return only unique result rows.
722 *
723 * - GROUP BY: May be either an SQL fragment string naming a field or
724 * expression to group by, or an array of such SQL fragments.
725 *
726 * - HAVING: May be either an string containing a HAVING clause or an array of
727 * conditions building the HAVING clause. If an array is given, the conditions
728 * constructed from each element are combined with AND.
729 *
730 * - ORDER BY: May be either an SQL fragment giving a field name or
731 * expression to order by, or an array of such SQL fragments.
732 *
733 * - USE INDEX: This may be either a string giving the index name to use
734 * for the query, or an array. If it is an associative array, each key
735 * gives the table name (or alias), each value gives the index name to
736 * use for that table. All strings are SQL fragments and so should be
737 * validated by the caller.
738 *
739 * - EXPLAIN: In MySQL, this causes an EXPLAIN SELECT query to be run,
740 * instead of SELECT.
741 *
742 * And also the following boolean MySQL extensions, see the MySQL manual
743 * for documentation:
744 *
745 * - LOCK IN SHARE MODE
746 * - STRAIGHT_JOIN
747 * - HIGH_PRIORITY
748 * - SQL_BIG_RESULT
749 * - SQL_BUFFER_RESULT
750 * - SQL_SMALL_RESULT
751 * - SQL_CALC_FOUND_ROWS
752 * - SQL_CACHE
753 * - SQL_NO_CACHE
754 *
755 *
756 * @param string|array $join_conds Join conditions
757 *
758 * Optional associative array of table-specific join conditions. In the
759 * most common case, this is unnecessary, since the join condition can be
760 * in $conds. However, it is useful for doing a LEFT JOIN.
761 *
762 * The key of the array contains the table name or alias. The value is an
763 * array with two elements, numbered 0 and 1. The first gives the type of
764 * join, the second is the same as the $conds parameter. Thus it can be
765 * an SQL fragment, or an array where the string keys are equality and the
766 * numeric keys are SQL fragments all AND'd together. For example:
767 *
768 * [ 'page' => [ 'LEFT JOIN', 'page_latest=rev_id' ] ]
769 *
770 * @return IResultWrapper Resulting rows
771 * @throws DBError
772 */
773 public function select(
774 $table, $vars, $conds = '', $fname = __METHOD__,
775 $options = [], $join_conds = []
776 );
777
778 /**
779 * The equivalent of IDatabase::select() except that the constructed SQL
780 * is returned, instead of being immediately executed. This can be useful for
781 * doing UNION queries, where the SQL text of each query is needed. In general,
782 * however, callers outside of Database classes should just use select().
783 *
784 * @see IDatabase::select()
785 *
786 * @param string|array $table Table name
787 * @param string|array $vars Field names
788 * @param string|array $conds Conditions
789 * @param string $fname Caller function name
790 * @param string|array $options Query options
791 * @param string|array $join_conds Join conditions
792 * @return string SQL query string
793 */
794 public function selectSQLText(
795 $table, $vars, $conds = '', $fname = __METHOD__,
796 $options = [], $join_conds = []
797 );
798
799 /**
800 * Single row SELECT wrapper. Equivalent to IDatabase::select(), except
801 * that a single row object is returned. If the query returns no rows,
802 * false is returned.
803 *
804 * @param string|array $table Table name
805 * @param string|array $vars Field names
806 * @param string|array $conds Conditions
807 * @param string $fname Caller function name
808 * @param string|array $options Query options
809 * @param array|string $join_conds Join conditions
810 *
811 * @return stdClass|bool
812 * @throws DBError
813 */
814 public function selectRow( $table, $vars, $conds, $fname = __METHOD__,
815 $options = [], $join_conds = []
816 );
817
818 /**
819 * Estimate the number of rows in dataset
820 *
821 * MySQL allows you to estimate the number of rows that would be returned
822 * by a SELECT query, using EXPLAIN SELECT. The estimate is provided using
823 * index cardinality statistics, and is notoriously inaccurate, especially
824 * when large numbers of rows have recently been added or deleted.
825 *
826 * For DBMSs that don't support fast result size estimation, this function
827 * will actually perform the SELECT COUNT(*).
828 *
829 * Takes the same arguments as IDatabase::select().
830 *
831 * @param string $table Table name
832 * @param string $var Column for which NULL values are not counted [default "*"]
833 * @param array|string $conds Filters on the table
834 * @param string $fname Function name for profiling
835 * @param array $options Options for select
836 * @param array|string $join_conds Join conditions
837 * @return int Row count
838 * @throws DBError
839 */
840 public function estimateRowCount(
841 $table, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
842 );
843
844 /**
845 * Get the number of rows in dataset
846 *
847 * This is useful when trying to do COUNT(*) but with a LIMIT for performance.
848 *
849 * Takes the same arguments as IDatabase::select().
850 *
851 * @since 1.27 Added $join_conds parameter
852 *
853 * @param array|string $tables Table names
854 * @param string $var Column for which NULL values are not counted [default "*"]
855 * @param array|string $conds Filters on the table
856 * @param string $fname Function name for profiling
857 * @param array $options Options for select
858 * @param array $join_conds Join conditions (since 1.27)
859 * @return int Row count
860 * @throws DBError
861 */
862 public function selectRowCount(
863 $tables, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
864 );
865
866 /**
867 * Lock all rows meeting the given conditions/options FOR UPDATE
868 *
869 * @param array|string $table Table names
870 * @param array|string $conds Filters on the table
871 * @param string $fname Function name for profiling
872 * @param array $options Options for select ("FOR UPDATE" is added automatically)
873 * @param array $join_conds Join conditions
874 * @return int Number of matching rows found (and locked)
875 * @since 1.32
876 */
877 public function lockForUpdate(
878 $table, $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
879 );
880
881 /**
882 * Determines whether a field exists in a table
883 *
884 * @param string $table Table name
885 * @param string $field Filed to check on that table
886 * @param string $fname Calling function name (optional)
887 * @return bool Whether $table has filed $field
888 * @throws DBError
889 */
890 public function fieldExists( $table, $field, $fname = __METHOD__ );
891
892 /**
893 * Determines whether an index exists
894 * Usually throws a DBQueryError on failure
895 * If errors are explicitly ignored, returns NULL on failure
896 *
897 * @param string $table
898 * @param string $index
899 * @param string $fname
900 * @return bool|null
901 * @throws DBError
902 */
903 public function indexExists( $table, $index, $fname = __METHOD__ );
904
905 /**
906 * Query whether a given table exists
907 *
908 * @param string $table
909 * @param string $fname
910 * @return bool
911 * @throws DBError
912 */
913 public function tableExists( $table, $fname = __METHOD__ );
914
915 /**
916 * INSERT wrapper, inserts an array into a table.
917 *
918 * $a may be either:
919 *
920 * - A single associative array. The array keys are the field names, and
921 * the values are the values to insert. The values are treated as data
922 * and will be quoted appropriately. If NULL is inserted, this will be
923 * converted to a database NULL.
924 * - An array with numeric keys, holding a list of associative arrays.
925 * This causes a multi-row INSERT on DBMSs that support it. The keys in
926 * each subarray must be identical to each other, and in the same order.
927 *
928 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
929 * returns success.
930 *
931 * $options is an array of options, with boolean options encoded as values
932 * with numeric keys, in the same style as $options in
933 * IDatabase::select(). Supported options are:
934 *
935 * - IGNORE: Boolean: if present, duplicate key errors are ignored, and
936 * any rows which cause duplicate key errors are not inserted. It's
937 * possible to determine how many rows were successfully inserted using
938 * IDatabase::affectedRows().
939 *
940 * @param string $table Table name. This will be passed through
941 * Database::tableName().
942 * @param array $a Array of rows to insert
943 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
944 * @param array $options Array of options
945 * @return bool Return true if no exception was thrown (deprecated since 1.33)
946 * @throws DBError
947 */
948 public function insert( $table, $a, $fname = __METHOD__, $options = [] );
949
950 /**
951 * UPDATE wrapper. Takes a condition array and a SET array.
952 *
953 * @param string $table Name of the table to UPDATE. This will be passed through
954 * Database::tableName().
955 * @param array $values An array of values to SET. For each array element,
956 * the key gives the field name, and the value gives the data to set
957 * that field to. The data will be quoted by IDatabase::addQuotes().
958 * Values with integer keys form unquoted SET statements, which can be used for
959 * things like "field = field + 1" or similar computed values.
960 * @param array $conds An array of conditions (WHERE). See
961 * IDatabase::select() for the details of the format of condition
962 * arrays. Use '*' to update all rows.
963 * @param string $fname The function name of the caller (from __METHOD__),
964 * for logging and profiling.
965 * @param array $options An array of UPDATE options, can be:
966 * - IGNORE: Ignore unique key conflicts
967 * - LOW_PRIORITY: MySQL-specific, see MySQL manual.
968 * @return bool Return true if no exception was thrown (deprecated since 1.33)
969 * @throws DBError
970 */
971 public function update( $table, $values, $conds, $fname = __METHOD__, $options = [] );
972
973 /**
974 * Makes an encoded list of strings from an array
975 *
976 * These can be used to make conjunctions or disjunctions on SQL condition strings
977 * derived from an array (see IDatabase::select() $conds documentation).
978 *
979 * Example usage:
980 * @code
981 * $sql = $db->makeList( [
982 * 'rev_page' => $id,
983 * $db->makeList( [ 'rev_minor' => 1, 'rev_len' < 500 ], $db::LIST_OR ] )
984 * ], $db::LIST_AND );
985 * @endcode
986 * This would set $sql to "rev_page = '$id' AND (rev_minor = '1' OR rev_len < '500')"
987 *
988 * @param array $a Containing the data
989 * @param int $mode IDatabase class constant:
990 * - IDatabase::LIST_COMMA: Comma separated, no field names
991 * - IDatabase::LIST_AND: ANDed WHERE clause (without the WHERE).
992 * - IDatabase::LIST_OR: ORed WHERE clause (without the WHERE)
993 * - IDatabase::LIST_SET: Comma separated with field names, like a SET clause
994 * - IDatabase::LIST_NAMES: Comma separated field names
995 * @throws DBError
996 * @return string
997 */
998 public function makeList( $a, $mode = self::LIST_COMMA );
999
1000 /**
1001 * Build a partial where clause from a 2-d array such as used for LinkBatch.
1002 * The keys on each level may be either integers or strings.
1003 *
1004 * @param array $data Organized as 2-d
1005 * [ baseKeyVal => [ subKeyVal => [ignored], ... ], ... ]
1006 * @param string $baseKey Field name to match the base-level keys to (eg 'pl_namespace')
1007 * @param string $subKey Field name to match the sub-level keys to (eg 'pl_title')
1008 * @return string|bool SQL fragment, or false if no items in array
1009 */
1010 public function makeWhereFrom2d( $data, $baseKey, $subKey );
1011
1012 /**
1013 * Return aggregated value alias
1014 *
1015 * @param array $valuedata
1016 * @param string $valuename
1017 *
1018 * @return string
1019 * @deprecated Since 1.33
1020 */
1021 public function aggregateValue( $valuedata, $valuename = 'value' );
1022
1023 /**
1024 * @param string $field
1025 * @return string
1026 */
1027 public function bitNot( $field );
1028
1029 /**
1030 * @param string $fieldLeft
1031 * @param string $fieldRight
1032 * @return string
1033 */
1034 public function bitAnd( $fieldLeft, $fieldRight );
1035
1036 /**
1037 * @param string $fieldLeft
1038 * @param string $fieldRight
1039 * @return string
1040 */
1041 public function bitOr( $fieldLeft, $fieldRight );
1042
1043 /**
1044 * Build a concatenation list to feed into a SQL query
1045 * @param array $stringList List of raw SQL expressions; caller is
1046 * responsible for any quoting
1047 * @return string
1048 */
1049 public function buildConcat( $stringList );
1050
1051 /**
1052 * Build a GROUP_CONCAT or equivalent statement for a query.
1053 *
1054 * This is useful for combining a field for several rows into a single string.
1055 * NULL values will not appear in the output, duplicated values will appear,
1056 * and the resulting delimiter-separated values have no defined sort order.
1057 * Code using the results may need to use the PHP unique() or sort() methods.
1058 *
1059 * @param string $delim Glue to bind the results together
1060 * @param string|array $table Table name
1061 * @param string $field Field name
1062 * @param string|array $conds Conditions
1063 * @param string|array $join_conds Join conditions
1064 * @return string SQL text
1065 * @since 1.23
1066 */
1067 public function buildGroupConcatField(
1068 $delim, $table, $field, $conds = '', $join_conds = []
1069 );
1070
1071 /**
1072 * Build a SUBSTRING function.
1073 *
1074 * Behavior for non-ASCII values is undefined.
1075 *
1076 * @param string $input Field name
1077 * @param int $startPosition Positive integer
1078 * @param int|null $length Non-negative integer length or null for no limit
1079 * @throws InvalidArgumentException
1080 * @return string SQL text
1081 * @since 1.31
1082 */
1083 public function buildSubString( $input, $startPosition, $length = null );
1084
1085 /**
1086 * @param string $field Field or column to cast
1087 * @return string
1088 * @since 1.28
1089 */
1090 public function buildStringCast( $field );
1091
1092 /**
1093 * @param string $field Field or column to cast
1094 * @return string
1095 * @since 1.31
1096 */
1097 public function buildIntegerCast( $field );
1098
1099 /**
1100 * Equivalent to IDatabase::selectSQLText() except wraps the result in Subqyery
1101 *
1102 * @see IDatabase::selectSQLText()
1103 *
1104 * @param string|array $table Table name
1105 * @param string|array $vars Field names
1106 * @param string|array $conds Conditions
1107 * @param string $fname Caller function name
1108 * @param string|array $options Query options
1109 * @param string|array $join_conds Join conditions
1110 * @return Subquery
1111 * @since 1.31
1112 */
1113 public function buildSelectSubquery(
1114 $table, $vars, $conds = '', $fname = __METHOD__,
1115 $options = [], $join_conds = []
1116 );
1117
1118 /**
1119 * Construct a LIMIT query with optional offset. This is used for query
1120 * pages. The SQL should be adjusted so that only the first $limit rows
1121 * are returned. If $offset is provided as well, then the first $offset
1122 * rows should be discarded, and the next $limit rows should be returned.
1123 * If the result of the query is not ordered, then the rows to be returned
1124 * are theoretically arbitrary.
1125 *
1126 * $sql is expected to be a SELECT, if that makes a difference.
1127 *
1128 * @param string $sql SQL query we will append the limit too
1129 * @param int $limit The SQL limit
1130 * @param int|bool $offset The SQL offset (default false)
1131 * @throws DBUnexpectedError
1132 * @return string
1133 * @since 1.34
1134 */
1135 public function limitResult( $sql, $limit, $offset = false );
1136
1137 /**
1138 * Returns true if DBs are assumed to be on potentially different servers
1139 *
1140 * In systems like mysql/mariadb, different databases can easily be referenced on a single
1141 * connection merely by name, even in a single query via JOIN. On the other hand, Postgres
1142 * treats databases as fully separate, only allowing mechanisms like postgres_fdw to
1143 * effectively "mount" foreign DBs. This is true even among DBs on the same server.
1144 *
1145 * @return bool
1146 * @since 1.29
1147 */
1148 public function databasesAreIndependent();
1149
1150 /**
1151 * Change the current database
1152 *
1153 * This should not be called outside LoadBalancer for connections managed by a LoadBalancer
1154 *
1155 * @param string $db
1156 * @return bool True unless an exception was thrown
1157 * @throws DBConnectionError If databasesAreIndependent() is true and an error occurs
1158 * @throws DBError
1159 * @deprecated Since 1.32 Use selectDomain() instead
1160 */
1161 public function selectDB( $db );
1162
1163 /**
1164 * Set the current domain (database, schema, and table prefix)
1165 *
1166 * This will throw an error for some database types if the database unspecified
1167 *
1168 * This should not be called outside LoadBalancer for connections managed by a LoadBalancer
1169 *
1170 * @param string|DatabaseDomain $domain
1171 * @since 1.32
1172 * @throws DBConnectionError
1173 */
1174 public function selectDomain( $domain );
1175
1176 /**
1177 * Get the current DB name
1178 * @return string|null
1179 */
1180 public function getDBname();
1181
1182 /**
1183 * Get the server hostname or IP address
1184 * @return string
1185 */
1186 public function getServer();
1187
1188 /**
1189 * Adds quotes and backslashes.
1190 *
1191 * @param string|int|null|bool|Blob $s
1192 * @return string|int
1193 */
1194 public function addQuotes( $s );
1195
1196 /**
1197 * Quotes an identifier, in order to make user controlled input safe
1198 *
1199 * Depending on the database this will either be `backticks` or "double quotes"
1200 *
1201 * @param string $s
1202 * @return string
1203 * @since 1.33
1204 */
1205 public function addIdentifierQuotes( $s );
1206
1207 /**
1208 * LIKE statement wrapper, receives a variable-length argument list with
1209 * parts of pattern to match containing either string literals that will be
1210 * escaped or tokens returned by anyChar() or anyString(). Alternatively,
1211 * the function could be provided with an array of aforementioned
1212 * parameters.
1213 *
1214 * Example: $dbr->buildLike( 'My_page_title/', $dbr->anyString() ) returns
1215 * a LIKE clause that searches for subpages of 'My page title'.
1216 * Alternatively:
1217 * $pattern = [ 'My_page_title/', $dbr->anyString() ];
1218 * $query .= $dbr->buildLike( $pattern );
1219 *
1220 * @since 1.16
1221 * @return string Fully built LIKE statement
1222 */
1223 public function buildLike();
1224
1225 /**
1226 * Returns a token for buildLike() that denotes a '_' to be used in a LIKE query
1227 *
1228 * @return LikeMatch
1229 */
1230 public function anyChar();
1231
1232 /**
1233 * Returns a token for buildLike() that denotes a '%' to be used in a LIKE query
1234 *
1235 * @return LikeMatch
1236 */
1237 public function anyString();
1238
1239 /**
1240 * Deprecated method, calls should be removed.
1241 *
1242 * This was formerly used for PostgreSQL and Oracle to handle
1243 * self::insertId() auto-incrementing fields. It is no longer necessary
1244 * since DatabasePostgres::insertId() has been reimplemented using
1245 * `lastval()` and Oracle has been reimplemented using triggers.
1246 *
1247 * Implementations should return null if inserting `NULL` into an
1248 * auto-incrementing field works, otherwise it should return an instance of
1249 * NextSequenceValue and filter it on calls to relevant methods.
1250 *
1251 * @deprecated since 1.30, no longer needed
1252 * @param string $seqName
1253 * @return null|NextSequenceValue
1254 */
1255 public function nextSequenceValue( $seqName );
1256
1257 /**
1258 * REPLACE query wrapper.
1259 *
1260 * REPLACE is a very handy MySQL extension, which functions like an INSERT
1261 * except that when there is a duplicate key error, the old row is deleted
1262 * and the new row is inserted in its place.
1263 *
1264 * We simulate this with standard SQL with a DELETE followed by INSERT. To
1265 * perform the delete, we need to know what the unique indexes are so that
1266 * we know how to find the conflicting rows.
1267 *
1268 * It may be more efficient to leave off unique indexes which are unlikely
1269 * to collide. However if you do this, you run the risk of encountering
1270 * errors which wouldn't have occurred in MySQL.
1271 *
1272 * @param string $table The table to replace the row(s) in.
1273 * @param array[]|string[]|string $uniqueIndexes All unique indexes. One of the following:
1274 * a) the one unique field in the table (when no composite unique key exist)
1275 * b) a list of all unique fields in the table (when no composite unique key exist)
1276 * c) a list of all unique indexes in the table (each as a list of the indexed fields)
1277 * @param array $rows Can be either a single row to insert, or multiple rows,
1278 * in the same format as for IDatabase::insert()
1279 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1280 * @throws DBError
1281 */
1282 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ );
1283
1284 /**
1285 * INSERT ON DUPLICATE KEY UPDATE wrapper, upserts an array into a table.
1286 *
1287 * This updates any conflicting rows (according to the unique indexes) using
1288 * the provided SET clause and inserts any remaining (non-conflicted) rows.
1289 *
1290 * $rows may be either:
1291 * - A single associative array. The array keys are the field names, and
1292 * the values are the values to insert. The values are treated as data
1293 * and will be quoted appropriately. If NULL is inserted, this will be
1294 * converted to a database NULL.
1295 * - An array with numeric keys, holding a list of associative arrays.
1296 * This causes a multi-row INSERT on DBMSs that support it. The keys in
1297 * each subarray must be identical to each other, and in the same order.
1298 *
1299 * It may be more efficient to leave off unique indexes which are unlikely
1300 * to collide. However if you do this, you run the risk of encountering
1301 * errors which wouldn't have occurred in MySQL.
1302 *
1303 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
1304 * returns success.
1305 *
1306 * @since 1.22
1307 *
1308 * @param string $table Table name. This will be passed through Database::tableName().
1309 * @param array $rows A single row or list of rows to insert
1310 * @param array[]|string[]|string $uniqueIndexes All unique indexes. One of the following:
1311 * a) the one unique field in the table (when no composite unique key exist)
1312 * b) a list of all unique fields in the table (when no composite unique key exist)
1313 * c) a list of all unique indexes in the table (each as a list of the indexed fields)
1314 * @param array $set An array of values to SET. For each array element, the
1315 * key gives the field name, and the value gives the data to set that
1316 * field to. The data will be quoted by IDatabase::addQuotes().
1317 * Values with integer keys form unquoted SET statements, which can be used for
1318 * things like "field = field + 1" or similar computed values.
1319 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1320 * @throws DBError
1321 * @return bool Return true if no exception was thrown (deprecated since 1.33)
1322 */
1323 public function upsert(
1324 $table, array $rows, $uniqueIndexes, array $set, $fname = __METHOD__
1325 );
1326
1327 /**
1328 * DELETE where the condition is a join.
1329 *
1330 * MySQL overrides this to use a multi-table DELETE syntax, in other databases
1331 * we use sub-selects
1332 *
1333 * For safety, an empty $conds will not delete everything. If you want to
1334 * delete all rows where the join condition matches, set $conds='*'.
1335 *
1336 * DO NOT put the join condition in $conds.
1337 *
1338 * @param string $delTable The table to delete from.
1339 * @param string $joinTable The other table.
1340 * @param string $delVar The variable to join on, in the first table.
1341 * @param string $joinVar The variable to join on, in the second table.
1342 * @param array $conds Condition array of field names mapped to variables,
1343 * ANDed together in the WHERE clause
1344 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1345 * @throws DBError
1346 */
1347 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
1348 $fname = __METHOD__
1349 );
1350
1351 /**
1352 * DELETE query wrapper.
1353 *
1354 * @param string $table Table name
1355 * @param string|array $conds Array of conditions. See $conds in IDatabase::select()
1356 * for the format. Use $conds == "*" to delete all rows
1357 * @param string $fname Name of the calling function
1358 * @throws DBUnexpectedError
1359 * @return bool Return true if no exception was thrown (deprecated since 1.33)
1360 * @throws DBError
1361 */
1362 public function delete( $table, $conds, $fname = __METHOD__ );
1363
1364 /**
1365 * INSERT SELECT wrapper. Takes data from a SELECT query and inserts it
1366 * into another table.
1367 *
1368 * @warning If the insert will use an auto-increment or sequence to
1369 * determine the value of a column, this may break replication on
1370 * databases using statement-based replication if the SELECT is not
1371 * deterministically ordered.
1372 *
1373 * @param string $destTable The table name to insert into
1374 * @param string|array $srcTable May be either a table name, or an array of table names
1375 * to include in a join.
1376 *
1377 * @param array $varMap Must be an associative array of the form
1378 * [ 'dest1' => 'source1', ... ]. Source items may be literals
1379 * rather than field names, but strings should be quoted with
1380 * IDatabase::addQuotes()
1381 *
1382 * @param array $conds Condition array. See $conds in IDatabase::select() for
1383 * the details of the format of condition arrays. May be "*" to copy the
1384 * whole table.
1385 *
1386 * @param string $fname The function name of the caller, from __METHOD__
1387 *
1388 * @param array $insertOptions Options for the INSERT part of the query, see
1389 * IDatabase::insert() for details. Also, one additional option is
1390 * available: pass 'NO_AUTO_COLUMNS' to hint that the query does not use
1391 * an auto-increment or sequence to determine any column values.
1392 * @param array $selectOptions Options for the SELECT part of the query, see
1393 * IDatabase::select() for details.
1394 * @param array $selectJoinConds Join conditions for the SELECT part of the query, see
1395 * IDatabase::select() for details.
1396 *
1397 * @return bool Return true if no exception was thrown (deprecated since 1.33)
1398 * @throws DBError
1399 */
1400 public function insertSelect( $destTable, $srcTable, $varMap, $conds,
1401 $fname = __METHOD__,
1402 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
1403 );
1404
1405 /**
1406 * Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries
1407 * within the UNION construct.
1408 * @return bool
1409 */
1410 public function unionSupportsOrderAndLimit();
1411
1412 /**
1413 * Construct a UNION query
1414 * This is used for providing overload point for other DB abstractions
1415 * not compatible with the MySQL syntax.
1416 * @param array $sqls SQL statements to combine
1417 * @param bool $all Either IDatabase::UNION_ALL or IDatabase::UNION_DISTINCT
1418 * @return string SQL fragment
1419 */
1420 public function unionQueries( $sqls, $all );
1421
1422 /**
1423 * Construct a UNION query for permutations of conditions
1424 *
1425 * Databases sometimes have trouble with queries that have multiple values
1426 * for multiple condition parameters combined with limits and ordering.
1427 * This method constructs queries for the Cartesian product of the
1428 * conditions and unions them all together.
1429 *
1430 * @see IDatabase::select()
1431 * @since 1.30
1432 * @param string|array $table Table name
1433 * @param string|array $vars Field names
1434 * @param array $permute_conds Conditions for the Cartesian product. Keys
1435 * are field names, values are arrays of the possible values for that
1436 * field.
1437 * @param string|array $extra_conds Additional conditions to include in the
1438 * query.
1439 * @param string $fname Caller function name
1440 * @param string|array $options Query options. In addition to the options
1441 * recognized by IDatabase::select(), the following may be used:
1442 * - NOTALL: Set to use UNION instead of UNION ALL.
1443 * - INNER ORDER BY: If specified and supported, subqueries will use this
1444 * instead of ORDER BY.
1445 * @param string|array $join_conds Join conditions
1446 * @return string SQL query string.
1447 */
1448 public function unionConditionPermutations(
1449 $table, $vars, array $permute_conds, $extra_conds = '', $fname = __METHOD__,
1450 $options = [], $join_conds = []
1451 );
1452
1453 /**
1454 * Returns an SQL expression for a simple conditional. This doesn't need
1455 * to be overridden unless CASE isn't supported in your DBMS.
1456 *
1457 * @param string|array $cond SQL expression which will result in a boolean value
1458 * @param string $trueVal SQL expression to return if true
1459 * @param string $falseVal SQL expression to return if false
1460 * @return string SQL fragment
1461 */
1462 public function conditional( $cond, $trueVal, $falseVal );
1463
1464 /**
1465 * Returns a command for str_replace function in SQL query.
1466 * Uses REPLACE() in MySQL
1467 *
1468 * @param string $orig Column to modify
1469 * @param string $old Column to seek
1470 * @param string $new Column to replace with
1471 *
1472 * @return string
1473 */
1474 public function strreplace( $orig, $old, $new );
1475
1476 /**
1477 * Determines how long the server has been up
1478 *
1479 * @return int
1480 * @throws DBError
1481 */
1482 public function getServerUptime();
1483
1484 /**
1485 * Determines if the last failure was due to a deadlock
1486 *
1487 * Note that during a deadlock, the prior transaction will have been lost
1488 *
1489 * @return bool
1490 */
1491 public function wasDeadlock();
1492
1493 /**
1494 * Determines if the last failure was due to a lock timeout
1495 *
1496 * Note that during a lock wait timeout, the prior transaction will have been lost
1497 *
1498 * @return bool
1499 */
1500 public function wasLockTimeout();
1501
1502 /**
1503 * Determines if the last query error was due to a dropped connection
1504 *
1505 * Note that during a connection loss, the prior transaction will have been lost
1506 *
1507 * @return bool
1508 * @since 1.31
1509 */
1510 public function wasConnectionLoss();
1511
1512 /**
1513 * Determines if the last failure was due to the database being read-only.
1514 *
1515 * @return bool
1516 */
1517 public function wasReadOnlyError();
1518
1519 /**
1520 * Determines if the last query error was due to something outside of the query itself
1521 *
1522 * Note that the transaction may have been lost, discarding prior writes and results
1523 *
1524 * @return bool
1525 */
1526 public function wasErrorReissuable();
1527
1528 /**
1529 * Wait for the replica DB to catch up to a given master position
1530 *
1531 * Note that this does not start any new transactions. If any existing transaction
1532 * is flushed, and this is called, then queries will reflect the point the DB was synced
1533 * up to (on success) without interference from REPEATABLE-READ snapshots.
1534 *
1535 * @param DBMasterPos $pos
1536 * @param int $timeout The maximum number of seconds to wait for synchronisation
1537 * @return int|null Zero if the replica DB was past that position already,
1538 * greater than zero if we waited for some period of time, less than
1539 * zero if it timed out, and null on error
1540 * @throws DBError
1541 */
1542 public function masterPosWait( DBMasterPos $pos, $timeout );
1543
1544 /**
1545 * Get the replication position of this replica DB
1546 *
1547 * @return DBMasterPos|bool False if this is not a replica DB
1548 * @throws DBError
1549 */
1550 public function getReplicaPos();
1551
1552 /**
1553 * Get the position of this master
1554 *
1555 * @return DBMasterPos|bool False if this is not a master
1556 * @throws DBError
1557 */
1558 public function getMasterPos();
1559
1560 /**
1561 * @return bool Whether the DB is marked as read-only server-side
1562 * @since 1.28
1563 */
1564 public function serverIsReadOnly();
1565
1566 /**
1567 * Run a callback as soon as the current transaction commits or rolls back.
1568 * An error is thrown if no transaction is pending. Queries in the function will run in
1569 * AUTOCOMMIT mode unless there are begin() calls. Callbacks must commit any transactions
1570 * that they begin.
1571 *
1572 * This is useful for combining cooperative locks and DB transactions.
1573 *
1574 * @note do not assume that *other* IDatabase instances will be AUTOCOMMIT mode
1575 *
1576 * The callback takes the following arguments:
1577 * - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK)
1578 * - This IDatabase instance (since 1.32)
1579 *
1580 * @param callable $callback
1581 * @param string $fname Caller name
1582 * @since 1.28
1583 */
1584 public function onTransactionResolution( callable $callback, $fname = __METHOD__ );
1585
1586 /**
1587 * Run a callback as soon as there is no transaction pending.
1588 * If there is a transaction and it is rolled back, then the callback is cancelled.
1589 *
1590 * When transaction round mode (DBO_TRX) is set, the callback will run at the end
1591 * of the round, just after all peer transactions COMMIT. If the transaction round
1592 * is rolled back, then the callback is cancelled.
1593 *
1594 * Queries in the function will run in AUTOCOMMIT mode unless there are begin() calls.
1595 * Callbacks must commit any transactions that they begin.
1596 *
1597 * This is useful for updates to different systems or when separate transactions are needed.
1598 * For example, one might want to enqueue jobs into a system outside the database, but only
1599 * after the database is updated so that the jobs will see the data when they actually run.
1600 * It can also be used for updates that easily suffer from lock timeouts and deadlocks,
1601 * but where atomicity is not essential.
1602 *
1603 * Avoid using IDatabase instances aside from this one in the callback, unless such instances
1604 * never have IDatabase::DBO_TRX set. This keeps callbacks from interfering with one another.
1605 *
1606 * Updates will execute in the order they were enqueued.
1607 *
1608 * @note do not assume that *other* IDatabase instances will be AUTOCOMMIT mode
1609 *
1610 * The callback takes the following arguments:
1611 * - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_IDLE)
1612 * - This IDatabase instance (since 1.32)
1613 *
1614 * @param callable $callback
1615 * @param string $fname Caller name
1616 * @since 1.32
1617 */
1618 public function onTransactionCommitOrIdle( callable $callback, $fname = __METHOD__ );
1619
1620 /**
1621 * Alias for onTransactionCommitOrIdle() for backwards-compatibility
1622 *
1623 * @param callable $callback
1624 * @param string $fname
1625 * @since 1.20
1626 * @deprecated Since 1.32
1627 */
1628 public function onTransactionIdle( callable $callback, $fname = __METHOD__ );
1629
1630 /**
1631 * Run a callback before the current transaction commits or now if there is none.
1632 * If there is a transaction and it is rolled back, then the callback is cancelled.
1633 *
1634 * When transaction round mode (DBO_TRX) is set, the callback will run at the end
1635 * of the round, just before all peer transactions COMMIT. If the transaction round
1636 * is rolled back, then the callback is cancelled.
1637 *
1638 * Callbacks must not start nor commit any transactions. If no transaction is active,
1639 * then a transaction will wrap the callback.
1640 *
1641 * This is useful for updates that easily suffer from lock timeouts and deadlocks,
1642 * but where atomicity is strongly desired for these updates and some related updates.
1643 *
1644 * Updates will execute in the order they were enqueued.
1645 *
1646 * The callback takes the one argument:
1647 * - This IDatabase instance (since 1.32)
1648 *
1649 * @param callable $callback
1650 * @param string $fname Caller name
1651 * @since 1.22
1652 */
1653 public function onTransactionPreCommitOrIdle( callable $callback, $fname = __METHOD__ );
1654
1655 /**
1656 * Run a callback after each time any transaction commits or rolls back
1657 *
1658 * The callback takes two arguments:
1659 * - IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK
1660 * - This IDatabase object
1661 * Callbacks must commit any transactions that they begin.
1662 *
1663 * Registering a callback here will not affect writesOrCallbacks() pending.
1664 *
1665 * Since callbacks from this or onTransactionCommitOrIdle() can start and end transactions,
1666 * a single call to IDatabase::commit might trigger multiple runs of the listener callbacks.
1667 *
1668 * @param string $name Callback name
1669 * @param callable|null $callback Use null to unset a listener
1670 * @since 1.28
1671 */
1672 public function setTransactionListener( $name, callable $callback = null );
1673
1674 /**
1675 * Begin an atomic section of SQL statements
1676 *
1677 * Start an implicit transaction if no transaction is already active, set a savepoint
1678 * (if $cancelable is ATOMIC_CANCELABLE), and track the given section name to enforce
1679 * that the transaction is not committed prematurely. The end of the section must be
1680 * signified exactly once, either by endAtomic() or cancelAtomic(). Sections can have
1681 * have layers of inner sections (sub-sections), but all sections must be ended in order
1682 * of innermost to outermost. Transactions cannot be started or committed until all
1683 * atomic sections are closed.
1684 *
1685 * ATOMIC_CANCELABLE is useful when the caller needs to handle specific failure cases
1686 * by discarding the section's writes. This should not be used for failures when:
1687 * - upsert() could easily be used instead
1688 * - insert() with IGNORE could easily be used instead
1689 * - select() with FOR UPDATE could be checked before issuing writes instead
1690 * - The failure is from code that runs after the first write but doesn't need to
1691 * - The failures are from contention solvable via onTransactionPreCommitOrIdle()
1692 * - The failures are deadlocks; the RDBMs usually discard the whole transaction
1693 *
1694 * @note callers must use additional measures for situations involving two or more
1695 * (peer) transactions (e.g. updating two database servers at once). The transaction
1696 * and savepoint logic of this method only applies to this specific IDatabase instance.
1697 *
1698 * Example usage:
1699 * @code
1700 * // Start a transaction if there isn't one already
1701 * $dbw->startAtomic( __METHOD__ );
1702 * // Serialize these thread table updates
1703 * $dbw->select( 'thread', '1', [ 'td_id' => $tid ], __METHOD__, 'FOR UPDATE' );
1704 * // Add a new comment for the thread
1705 * $dbw->insert( 'comment', $row, __METHOD__ );
1706 * $cid = $db->insertId();
1707 * // Update thread reference to last comment
1708 * $dbw->update( 'thread', [ 'td_latest' => $cid ], [ 'td_id' => $tid ], __METHOD__ );
1709 * // Demark the end of this conceptual unit of updates
1710 * $dbw->endAtomic( __METHOD__ );
1711 * @endcode
1712 *
1713 * Example usage (atomic changes that might have to be discarded):
1714 * @code
1715 * // Start a transaction if there isn't one already
1716 * $sectionId = $dbw->startAtomic( __METHOD__, $dbw::ATOMIC_CANCELABLE );
1717 * // Create new record metadata row
1718 * $dbw->insert( 'records', $row, __METHOD__ );
1719 * // Figure out where to store the data based on the new row's ID
1720 * $path = $recordDirectory . '/' . $dbw->insertId();
1721 * // Write the record data to the storage system
1722 * $status = $fileBackend->create( [ 'dst' => $path, 'content' => $data ] );
1723 * if ( $status->isOK() ) {
1724 * // Try to cleanup files orphaned by transaction rollback
1725 * $dbw->onTransactionResolution(
1726 * function ( $type ) use ( $fileBackend, $path ) {
1727 * if ( $type === IDatabase::TRIGGER_ROLLBACK ) {
1728 * $fileBackend->delete( [ 'src' => $path ] );
1729 * }
1730 * },
1731 * __METHOD__
1732 * );
1733 * // Demark the end of this conceptual unit of updates
1734 * $dbw->endAtomic( __METHOD__ );
1735 * } else {
1736 * // Discard these writes from the transaction (preserving prior writes)
1737 * $dbw->cancelAtomic( __METHOD__, $sectionId );
1738 * }
1739 * @endcode
1740 *
1741 * @since 1.23
1742 * @param string $fname
1743 * @param string $cancelable Pass self::ATOMIC_CANCELABLE to use a
1744 * savepoint and enable self::cancelAtomic() for this section.
1745 * @return AtomicSectionIdentifier section ID token
1746 * @throws DBError
1747 */
1748 public function startAtomic( $fname = __METHOD__, $cancelable = self::ATOMIC_NOT_CANCELABLE );
1749
1750 /**
1751 * Ends an atomic section of SQL statements
1752 *
1753 * Ends the next section of atomic SQL statements and commits the transaction
1754 * if necessary.
1755 *
1756 * @since 1.23
1757 * @see IDatabase::startAtomic
1758 * @param string $fname
1759 * @throws DBError
1760 */
1761 public function endAtomic( $fname = __METHOD__ );
1762
1763 /**
1764 * Cancel an atomic section of SQL statements
1765 *
1766 * This will roll back only the statements executed since the start of the
1767 * most recent atomic section, and close that section. If a transaction was
1768 * open before the corresponding startAtomic() call, any statements before
1769 * that call are *not* rolled back and the transaction remains open. If the
1770 * corresponding startAtomic() implicitly started a transaction, that
1771 * transaction is rolled back.
1772 *
1773 * @note callers must use additional measures for situations involving two or more
1774 * (peer) transactions (e.g. updating two database servers at once). The transaction
1775 * and savepoint logic of startAtomic() are bound to specific IDatabase instances.
1776 *
1777 * Note that a call to IDatabase::rollback() will also roll back any open atomic sections.
1778 *
1779 * @note As a micro-optimization to save a few DB calls, this method may only
1780 * be called when startAtomic() was called with the ATOMIC_CANCELABLE flag.
1781 * @since 1.31
1782 * @see IDatabase::startAtomic
1783 * @param string $fname
1784 * @param AtomicSectionIdentifier|null $sectionId Section ID from startAtomic();
1785 * passing this enables cancellation of unclosed nested sections [optional]
1786 * @throws DBError
1787 */
1788 public function cancelAtomic( $fname = __METHOD__, AtomicSectionIdentifier $sectionId = null );
1789
1790 /**
1791 * Perform an atomic section of reversable SQL statements from a callback
1792 *
1793 * The $callback takes the following arguments:
1794 * - This database object
1795 * - The value of $fname
1796 *
1797 * This will execute the callback inside a pair of startAtomic()/endAtomic() calls.
1798 * If any exception occurs during execution of the callback, it will be handled as follows:
1799 * - If $cancelable is ATOMIC_CANCELABLE, cancelAtomic() will be called to back out any
1800 * (and only) statements executed during the atomic section. If that succeeds, then the
1801 * exception will be re-thrown; if it fails, then a different exception will be thrown
1802 * and any further query attempts will fail until rollback() is called.
1803 * - If $cancelable is ATOMIC_NOT_CANCELABLE, cancelAtomic() will be called to mark the
1804 * end of the section and the error will be re-thrown. Any further query attempts will
1805 * fail until rollback() is called.
1806 *
1807 * This method is convenient for letting calls to the caller of this method be wrapped
1808 * in a try/catch blocks for exception types that imply that the caller failed but was
1809 * able to properly discard the changes it made in the transaction. This method can be
1810 * an alternative to explicit calls to startAtomic()/endAtomic()/cancelAtomic().
1811 *
1812 * Example usage, "RecordStore::save" method:
1813 * @code
1814 * $dbw->doAtomicSection( __METHOD__, function ( $dbw ) use ( $record ) {
1815 * // Create new record metadata row
1816 * $dbw->insert( 'records', $record->toArray(), __METHOD__ );
1817 * // Figure out where to store the data based on the new row's ID
1818 * $path = $this->recordDirectory . '/' . $dbw->insertId();
1819 * // Write the record data to the storage system;
1820 * // blob store throughs StoreFailureException on failure
1821 * $this->blobStore->create( $path, $record->getJSON() );
1822 * // Try to cleanup files orphaned by transaction rollback
1823 * $dbw->onTransactionResolution(
1824 * function ( $type ) use ( $path ) {
1825 * if ( $type === IDatabase::TRIGGER_ROLLBACK ) {
1826 * $this->blobStore->delete( $path );
1827 * }
1828 * },
1829 * __METHOD__
1830 * );
1831 * }, $dbw::ATOMIC_CANCELABLE );
1832 * @endcode
1833 *
1834 * Example usage, caller of the "RecordStore::save" method:
1835 * @code
1836 * $dbw->startAtomic( __METHOD__ );
1837 * // ...various SQL writes happen...
1838 * try {
1839 * $recordStore->save( $record );
1840 * } catch ( StoreFailureException $e ) {
1841 * // ...various SQL writes happen...
1842 * }
1843 * // ...various SQL writes happen...
1844 * $dbw->endAtomic( __METHOD__ );
1845 * @endcode
1846 *
1847 * @see Database::startAtomic
1848 * @see Database::endAtomic
1849 * @see Database::cancelAtomic
1850 *
1851 * @param string $fname Caller name (usually __METHOD__)
1852 * @param callable $callback Callback that issues DB updates
1853 * @param string $cancelable Pass self::ATOMIC_CANCELABLE to use a
1854 * savepoint and enable self::cancelAtomic() for this section.
1855 * @return mixed $res Result of the callback (since 1.28)
1856 * @throws DBError
1857 * @throws RuntimeException
1858 * @since 1.27; prior to 1.31 this did a rollback() instead of
1859 * cancelAtomic(), and assumed no callers up the stack would ever try to
1860 * catch the exception.
1861 */
1862 public function doAtomicSection(
1863 $fname, callable $callback, $cancelable = self::ATOMIC_NOT_CANCELABLE
1864 );
1865
1866 /**
1867 * Begin a transaction. If a transaction is already in progress,
1868 * that transaction will be committed before the new transaction is started.
1869 *
1870 * Only call this from code with outer transcation scope.
1871 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1872 * Nesting of transactions is not supported.
1873 *
1874 * Note that when the DBO_TRX flag is set (which is usually the case for web
1875 * requests, but not for maintenance scripts), any previous database query
1876 * will have started a transaction automatically.
1877 *
1878 * Nesting of transactions is not supported. Attempts to nest transactions
1879 * will cause a warning, unless the current transaction was started
1880 * automatically because of the DBO_TRX flag.
1881 *
1882 * @param string $fname Calling function name
1883 * @param string $mode A situationally valid IDatabase::TRANSACTION_* constant [optional]
1884 * @throws DBError
1885 */
1886 public function begin( $fname = __METHOD__, $mode = self::TRANSACTION_EXPLICIT );
1887
1888 /**
1889 * Commits a transaction previously started using begin().
1890 * If no transaction is in progress, a warning is issued.
1891 *
1892 * Only call this from code with outer transcation scope.
1893 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1894 * Nesting of transactions is not supported.
1895 *
1896 * @param string $fname
1897 * @param string $flush Flush flag, set to situationally valid IDatabase::FLUSHING_*
1898 * constant to disable warnings about explicitly committing implicit transactions,
1899 * or calling commit when no transaction is in progress.
1900 *
1901 * This will trigger an exception if there is an ongoing explicit transaction.
1902 *
1903 * Only set the flush flag if you are sure that these warnings are not applicable,
1904 * and no explicit transactions are open.
1905 *
1906 * @throws DBError
1907 */
1908 public function commit( $fname = __METHOD__, $flush = '' );
1909
1910 /**
1911 * Rollback a transaction previously started using begin().
1912 * If no transaction is in progress, a warning is issued.
1913 *
1914 * Only call this from code with outer transcation scope.
1915 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1916 * Nesting of transactions is not supported. If a serious unexpected error occurs,
1917 * throwing an Exception is preferrable, using a pre-installed error handler to trigger
1918 * rollback (in any case, failure to issue COMMIT will cause rollback server-side).
1919 *
1920 * Query, connection, and onTransaction* callback errors will be suppressed and logged.
1921 *
1922 * @param string $fname Calling function name
1923 * @param string $flush Flush flag, set to a situationally valid IDatabase::FLUSHING_*
1924 * constant to disable warnings about calling rollback when no transaction is in
1925 * progress. This will silently break any ongoing explicit transaction. Only set the
1926 * flush flag if you are sure that it is safe to ignore these warnings in your context.
1927 * @throws DBError
1928 * @since 1.23 Added $flush parameter
1929 */
1930 public function rollback( $fname = __METHOD__, $flush = '' );
1931
1932 /**
1933 * Commit any transaction but error out if writes or callbacks are pending
1934 *
1935 * This is intended for clearing out REPEATABLE-READ snapshots so that callers can
1936 * see a new point-in-time of the database. This is useful when one of many transaction
1937 * rounds finished and significant time will pass in the script's lifetime. It is also
1938 * useful to call on a replica DB after waiting on replication to catch up to the master.
1939 *
1940 * @param string $fname Calling function name
1941 * @throws DBError
1942 * @since 1.28
1943 */
1944 public function flushSnapshot( $fname = __METHOD__ );
1945
1946 /**
1947 * Convert a timestamp in one of the formats accepted by wfTimestamp()
1948 * to the format used for inserting into timestamp fields in this DBMS.
1949 *
1950 * The result is unquoted, and needs to be passed through addQuotes()
1951 * before it can be included in raw SQL.
1952 *
1953 * @param string|int $ts
1954 *
1955 * @return string
1956 */
1957 public function timestamp( $ts = 0 );
1958
1959 /**
1960 * Convert a timestamp in one of the formats accepted by wfTimestamp()
1961 * to the format used for inserting into timestamp fields in this DBMS. If
1962 * NULL is input, it is passed through, allowing NULL values to be inserted
1963 * into timestamp fields.
1964 *
1965 * The result is unquoted, and needs to be passed through addQuotes()
1966 * before it can be included in raw SQL.
1967 *
1968 * @param string|int|null $ts
1969 *
1970 * @return string
1971 */
1972 public function timestampOrNull( $ts = null );
1973
1974 /**
1975 * Ping the server and try to reconnect if it there is no connection
1976 *
1977 * @param float|null &$rtt Value to store the estimated RTT [optional]
1978 * @return bool Success or failure
1979 */
1980 public function ping( &$rtt = null );
1981
1982 /**
1983 * Get the amount of replication lag for this database server
1984 *
1985 * Callers should avoid using this method while a transaction is active
1986 *
1987 * @return int|bool Database replication lag in seconds or false on error
1988 * @throws DBError
1989 */
1990 public function getLag();
1991
1992 /**
1993 * Get the replica DB lag when the current transaction started
1994 * or a general lag estimate if not transaction is active
1995 *
1996 * This is useful when transactions might use snapshot isolation
1997 * (e.g. REPEATABLE-READ in innodb), so the "real" lag of that data
1998 * is this lag plus transaction duration. If they don't, it is still
1999 * safe to be pessimistic. In AUTOCOMMIT mode, this still gives an
2000 * indication of the staleness of subsequent reads.
2001 *
2002 * @return array ('lag': seconds or false on error, 'since': UNIX timestamp of BEGIN)
2003 * @throws DBError
2004 * @since 1.27
2005 */
2006 public function getSessionLagStatus();
2007
2008 /**
2009 * Return the maximum number of items allowed in a list, or 0 for unlimited.
2010 *
2011 * @return int
2012 */
2013 public function maxListLen();
2014
2015 /**
2016 * Some DBMSs have a special format for inserting into blob fields, they
2017 * don't allow simple quoted strings to be inserted. To insert into such
2018 * a field, pass the data through this function before passing it to
2019 * IDatabase::insert().
2020 *
2021 * @param string $b
2022 * @return string|Blob
2023 */
2024 public function encodeBlob( $b );
2025
2026 /**
2027 * Some DBMSs return a special placeholder object representing blob fields
2028 * in result objects. Pass the object through this function to return the
2029 * original string.
2030 *
2031 * @param string|Blob $b
2032 * @return string
2033 */
2034 public function decodeBlob( $b );
2035
2036 /**
2037 * Override database's default behavior. $options include:
2038 * 'connTimeout' : Set the connection timeout value in seconds.
2039 * May be useful for very long batch queries such as
2040 * full-wiki dumps, where a single query reads out over
2041 * hours or days.
2042 *
2043 * @param array $options
2044 * @return void
2045 * @throws DBError
2046 */
2047 public function setSessionOptions( array $options );
2048
2049 /**
2050 * Set variables to be used in sourceFile/sourceStream, in preference to the
2051 * ones in $GLOBALS. If an array is set here, $GLOBALS will not be used at
2052 * all. If it's set to false, $GLOBALS will be used.
2053 *
2054 * @param bool|array $vars Mapping variable name to value.
2055 */
2056 public function setSchemaVars( $vars );
2057
2058 /**
2059 * Check to see if a named lock is not locked by any thread (non-blocking)
2060 *
2061 * @param string $lockName Name of lock to poll
2062 * @param string $method Name of method calling us
2063 * @return bool
2064 * @throws DBError
2065 * @since 1.20
2066 */
2067 public function lockIsFree( $lockName, $method );
2068
2069 /**
2070 * Acquire a named lock
2071 *
2072 * Named locks are not related to transactions
2073 *
2074 * @param string $lockName Name of lock to aquire
2075 * @param string $method Name of the calling method
2076 * @param int $timeout Acquisition timeout in seconds
2077 * @return bool
2078 * @throws DBError
2079 */
2080 public function lock( $lockName, $method, $timeout = 5 );
2081
2082 /**
2083 * Release a lock
2084 *
2085 * Named locks are not related to transactions
2086 *
2087 * @param string $lockName Name of lock to release
2088 * @param string $method Name of the calling method
2089 *
2090 * @return int Returns 1 if the lock was released, 0 if the lock was not established
2091 * by this thread (in which case the lock is not released), and NULL if the named lock
2092 * did not exist
2093 *
2094 * @throws DBError
2095 */
2096 public function unlock( $lockName, $method );
2097
2098 /**
2099 * Acquire a named lock, flush any transaction, and return an RAII style unlocker object
2100 *
2101 * Only call this from outer transcation scope and when only one DB will be affected.
2102 * See https://www.mediawiki.org/wiki/Database_transactions for details.
2103 *
2104 * This is suitiable for transactions that need to be serialized using cooperative locks,
2105 * where each transaction can see each others' changes. Any transaction is flushed to clear
2106 * out stale REPEATABLE-READ snapshot data. Once the returned object falls out of PHP scope,
2107 * the lock will be released unless a transaction is active. If one is active, then the lock
2108 * will be released when it either commits or rolls back.
2109 *
2110 * If the lock acquisition failed, then no transaction flush happens, and null is returned.
2111 *
2112 * @param string $lockKey Name of lock to release
2113 * @param string $fname Name of the calling method
2114 * @param int $timeout Acquisition timeout in seconds
2115 * @return ScopedCallback|null
2116 * @throws DBError
2117 * @since 1.27
2118 */
2119 public function getScopedLockAndFlush( $lockKey, $fname, $timeout );
2120
2121 /**
2122 * Check to see if a named lock used by lock() use blocking queues
2123 *
2124 * @return bool
2125 * @since 1.26
2126 */
2127 public function namedLocksEnqueue();
2128
2129 /**
2130 * Find out when 'infinity' is. Most DBMSes support this. This is a special
2131 * keyword for timestamps in PostgreSQL, and works with CHAR(14) as well
2132 * because "i" sorts after all numbers.
2133 *
2134 * @return string
2135 */
2136 public function getInfinity();
2137
2138 /**
2139 * Encode an expiry time into the DBMS dependent format
2140 *
2141 * @param string $expiry Timestamp for expiry, or the 'infinity' string
2142 * @return string
2143 */
2144 public function encodeExpiry( $expiry );
2145
2146 /**
2147 * Decode an expiry time into a DBMS independent format
2148 *
2149 * @param string $expiry DB timestamp field value for expiry
2150 * @param int $format TS_* constant, defaults to TS_MW
2151 * @return string
2152 */
2153 public function decodeExpiry( $expiry, $format = TS_MW );
2154
2155 /**
2156 * Allow or deny "big selects" for this session only. This is done by setting
2157 * the sql_big_selects session variable.
2158 *
2159 * This is a MySQL-specific feature.
2160 *
2161 * @param bool|string $value True for allow, false for deny, or "default" to
2162 * restore the initial value
2163 */
2164 public function setBigSelects( $value = true );
2165
2166 /**
2167 * @return bool Whether this DB is read-only
2168 * @since 1.27
2169 */
2170 public function isReadOnly();
2171
2172 /**
2173 * Make certain table names use their own database, schema, and table prefix
2174 * when passed into SQL queries pre-escaped and without a qualified database name
2175 *
2176 * For example, "user" can be converted to "myschema.mydbname.user" for convenience.
2177 * Appearances like `user`, somedb.user, somedb.someschema.user will used literally.
2178 *
2179 * Calling this twice will completely clear any old table aliases. Also, note that
2180 * callers are responsible for making sure the schemas and databases actually exist.
2181 *
2182 * @param array[] $aliases Map of (table => (dbname, schema, prefix) map)
2183 * @since 1.28
2184 */
2185 public function setTableAliases( array $aliases );
2186
2187 /**
2188 * Convert certain index names to alternative names before querying the DB
2189 *
2190 * Note that this applies to indexes regardless of the table they belong to.
2191 *
2192 * This can be employed when an index was renamed X => Y in code, but the new Y-named
2193 * indexes were not yet built on all DBs. After all the Y-named ones are added by the DBA,
2194 * the aliases can be removed, and then the old X-named indexes dropped.
2195 *
2196 * @param string[] $aliases
2197 * @since 1.31
2198 */
2199 public function setIndexAliases( array $aliases );
2200 }
2201
2202 /**
2203 * @deprecated since 1.29
2204 */
2205 class_alias( IDatabase::class, 'IDatabase' );