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