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