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