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