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