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