Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[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 /** @var int Enforce that a query does not make effective writes */
117 const QUERY_REPLICA_ROLE = 4;
118
119 /** @var bool Parameter to unionQueries() for UNION ALL */
120 const UNION_ALL = true;
121 /** @var bool Parameter to unionQueries() for UNION DISTINCT */
122 const UNION_DISTINCT = false;
123
124 /**
125 * A string describing the current software version, and possibly
126 * other details in a user-friendly way. Will be listed on Special:Version, etc.
127 * Use getServerVersion() to get machine-friendly information.
128 *
129 * @return string Version information from the database server
130 */
131 public function getServerInfo();
132
133 /**
134 * Turns buffering of SQL result sets on (true) or off (false). Default is "on".
135 *
136 * Unbuffered queries are very troublesome in MySQL:
137 *
138 * - If another query is executed while the first query is being read
139 * out, the first query is killed. This means you can't call normal
140 * Database functions while you are reading an unbuffered query result
141 * from a normal Database connection.
142 *
143 * - Unbuffered queries cause the MySQL server to use large amounts of
144 * memory and to hold broad locks which block other queries.
145 *
146 * If you want to limit client-side memory, it's almost always better to
147 * split up queries into batches using a LIMIT clause than to switch off
148 * buffering.
149 *
150 * @param null|bool $buffer
151 * @return null|bool The previous value of the flag
152 */
153 public function bufferResults( $buffer = null );
154
155 /**
156 * Gets the current transaction level.
157 *
158 * Historically, transactions were allowed to be "nested". This is no
159 * longer supported, so this function really only returns a boolean.
160 *
161 * @return int The previous value
162 */
163 public function trxLevel();
164
165 /**
166 * Get the UNIX timestamp of the time that the transaction was established
167 *
168 * This can be used to reason about the staleness of SELECT data
169 * in REPEATABLE-READ transaction isolation level.
170 *
171 * @return float|null Returns null if there is not active transaction
172 * @since 1.25
173 */
174 public function trxTimestamp();
175
176 /**
177 * @return bool Whether an explicit transaction or atomic sections are still open
178 * @since 1.28
179 */
180 public function explicitTrxActive();
181
182 /**
183 * Assert that all explicit transactions or atomic sections have been closed.
184 * @throws DBTransactionError
185 * @since 1.32
186 */
187 public function assertNoOpenTransactions();
188
189 /**
190 * Get/set the table prefix.
191 * @param string|null $prefix The table prefix to set, or omitted to leave it unchanged.
192 * @return string The previous table prefix
193 * @throws DBUnexpectedError
194 */
195 public function tablePrefix( $prefix = null );
196
197 /**
198 * Get/set the db schema.
199 * @param string|null $schema The database schema to set, or omitted to leave it unchanged.
200 * @return string The previous db schema
201 */
202 public function dbSchema( $schema = null );
203
204 /**
205 * Get properties passed down from the server info array of the load
206 * balancer.
207 *
208 * @param string|null $name The entry of the info array to get, or null to get the
209 * whole array
210 *
211 * @return array|mixed|null
212 */
213 public function getLBInfo( $name = null );
214
215 /**
216 * Set the LB info array, or a member of it. If called with one parameter,
217 * the LB info array is set to that parameter. If it is called with two
218 * parameters, the member with the given name is set to the given value.
219 *
220 * @param string $name
221 * @param array|null $value
222 */
223 public function setLBInfo( $name, $value = null );
224
225 /**
226 * Set a lazy-connecting DB handle to the master DB (for replication status purposes)
227 *
228 * @param IDatabase $conn
229 * @since 1.27
230 */
231 public function setLazyMasterHandle( IDatabase $conn );
232
233 /**
234 * Returns true if this database does an implicit sort when doing GROUP BY
235 *
236 * @return bool
237 * @deprecated Since 1.30; only use grouped or aggregated fields in the SELECT
238 */
239 public function implicitGroupby();
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 went through IDatabase::query()
251 * @return string
252 */
253 public function lastQuery();
254
255 /**
256 * Returns true if the connection may have been used for write queries.
257 * Should return true if unsure.
258 *
259 * @return bool
260 * @deprecated Since 1.31; use lastDoneWrites()
261 */
262 public function doneWrites();
263
264 /**
265 * Returns the last time the connection may have been used for write queries.
266 * Should return a timestamp if unsure.
267 *
268 * @return int|float UNIX timestamp or false
269 * @since 1.24
270 */
271 public function lastDoneWrites();
272
273 /**
274 * @return bool Whether there is a transaction open with possible write queries
275 * @since 1.27
276 */
277 public function writesPending();
278
279 /**
280 * @return bool Whether there is a transaction open with pre-commit callbacks pending
281 * @since 1.32
282 */
283 public function preCommitCallbacksPending();
284
285 /**
286 * Whether there is a transaction open with either possible write queries
287 * or unresolved pre-commit/commit/resolution callbacks pending
288 *
289 * This does *not* count recurring callbacks, e.g. from setTransactionListener().
290 *
291 * @return bool
292 */
293 public function writesOrCallbacksPending();
294
295 /**
296 * Get the time spend running write queries for this transaction
297 *
298 * High times could be due to scanning, updates, locking, and such
299 *
300 * @param string $type IDatabase::ESTIMATE_* constant [default: ESTIMATE_ALL]
301 * @return float|bool Returns false if not transaction is active
302 * @since 1.26
303 */
304 public function pendingWriteQueryDuration( $type = self::ESTIMATE_TOTAL );
305
306 /**
307 * Get the list of method names that did write queries for this transaction
308 *
309 * @return array
310 * @since 1.27
311 */
312 public function pendingWriteCallers();
313
314 /**
315 * Get the number of affected rows from pending write queries
316 *
317 * @return int
318 * @since 1.30
319 */
320 public function pendingWriteRowsAffected();
321
322 /**
323 * Is a connection to the database open?
324 * @return bool
325 */
326 public function isOpen();
327
328 /**
329 * Set a flag for this connection
330 *
331 * @param int $flag DBO_* constants from Defines.php:
332 * - DBO_DEBUG: output some debug info (same as debug())
333 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
334 * - DBO_TRX: automatically start transactions
335 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
336 * and removes it in command line mode
337 * - DBO_PERSISTENT: use persistant database connection
338 * @param string $remember IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING]
339 */
340 public function setFlag( $flag, $remember = self::REMEMBER_NOTHING );
341
342 /**
343 * Clear a flag for this connection
344 *
345 * @param int $flag DBO_* constants from Defines.php:
346 * - DBO_DEBUG: output some debug info (same as debug())
347 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
348 * - DBO_TRX: automatically start transactions
349 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
350 * and removes it in command line mode
351 * - DBO_PERSISTENT: use persistant database connection
352 * @param string $remember IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING]
353 */
354 public function clearFlag( $flag, $remember = self::REMEMBER_NOTHING );
355
356 /**
357 * Restore the flags to their prior state before the last setFlag/clearFlag call
358 *
359 * @param string $state IDatabase::RESTORE_* constant. [default: RESTORE_PRIOR]
360 * @since 1.28
361 */
362 public function restoreFlags( $state = self::RESTORE_PRIOR );
363
364 /**
365 * Returns a boolean whether the flag $flag is set for this connection
366 *
367 * @param int $flag DBO_* constants from Defines.php:
368 * - DBO_DEBUG: output some debug info (same as debug())
369 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
370 * - DBO_TRX: automatically start transactions
371 * - DBO_PERSISTENT: use persistant database connection
372 * @return bool
373 */
374 public function getFlag( $flag );
375
376 /**
377 * Return the currently selected domain ID
378 *
379 * Null components (database/schema) might change once a connection is established
380 *
381 * @return string
382 */
383 public function getDomainID();
384
385 /**
386 * Alias for getDomainID()
387 *
388 * @return string
389 * @deprecated 1.30
390 */
391 public function getWikiID();
392
393 /**
394 * Get the type of the DBMS, as it appears in $wgDBtype.
395 *
396 * @return string
397 */
398 public function getType();
399
400 /**
401 * Fetch the next row from the given result object, in object form.
402 * Fields can be retrieved with $row->fieldname, with fields acting like
403 * member variables.
404 * If no more rows are available, false is returned.
405 *
406 * @param IResultWrapper|stdClass $res Object as returned from IDatabase::query(), etc.
407 * @return stdClass|bool
408 * @throws DBUnexpectedError Thrown if the database returns an error
409 */
410 public function fetchObject( $res );
411
412 /**
413 * Fetch the next row from the given result object, in associative array
414 * form. Fields are retrieved with $row['fieldname'].
415 * If no more rows are available, false is returned.
416 *
417 * @param IResultWrapper $res Result object as returned from IDatabase::query(), etc.
418 * @return array|bool
419 * @throws DBUnexpectedError Thrown if the database returns an error
420 */
421 public function fetchRow( $res );
422
423 /**
424 * Get the number of rows in a query result. If the query did not return
425 * any rows (for example, if it was a write query), this returns zero.
426 *
427 * @param mixed $res A SQL result
428 * @return int
429 */
430 public function numRows( $res );
431
432 /**
433 * Get the number of fields in a result object
434 * @see https://secure.php.net/mysql_num_fields
435 *
436 * @param mixed $res A SQL result
437 * @return int
438 */
439 public function numFields( $res );
440
441 /**
442 * Get a field name in a result object
443 * @see https://secure.php.net/mysql_field_name
444 *
445 * @param mixed $res A SQL result
446 * @param int $n
447 * @return string
448 */
449 public function fieldName( $res, $n );
450
451 /**
452 * Get the inserted value of an auto-increment row
453 *
454 * This should only be called after an insert that used an auto-incremented
455 * value. If no such insert was previously done in the current database
456 * session, the return value is undefined.
457 *
458 * @return int
459 */
460 public function insertId();
461
462 /**
463 * Change the position of the cursor in a result object
464 * @see https://secure.php.net/mysql_data_seek
465 *
466 * @param mixed $res A SQL result
467 * @param int $row
468 */
469 public function dataSeek( $res, $row );
470
471 /**
472 * Get the last error number
473 * @see https://secure.php.net/mysql_errno
474 *
475 * @return int
476 */
477 public function lastErrno();
478
479 /**
480 * Get a description of the last error
481 * @see https://secure.php.net/mysql_error
482 *
483 * @return string
484 */
485 public function lastError();
486
487 /**
488 * Get the number of rows affected by the last write query
489 * @see https://secure.php.net/mysql_affected_rows
490 *
491 * @return int
492 */
493 public function affectedRows();
494
495 /**
496 * Returns a wikitext link to the DB's website, e.g.,
497 * return "[https://www.mysql.com/ MySQL]";
498 * Should at least contain plain text, if for some reason
499 * your database has no website.
500 *
501 * @return string Wikitext of a link to the server software's web site
502 */
503 public function getSoftwareLink();
504
505 /**
506 * A string describing the current software version, like from
507 * mysql_get_server_info().
508 *
509 * @return string Version information from the database server.
510 */
511 public function getServerVersion();
512
513 /**
514 * Close the database connection
515 *
516 * This should only be called after any transactions have been resolved,
517 * aside from read-only automatic transactions (assuming no callbacks are registered).
518 * If a transaction is still open anyway, it will be rolled back.
519 *
520 * @throws DBError
521 * @return bool Operation success. true if already closed.
522 */
523 public function close();
524
525 /**
526 * Run an SQL query and return the result. Normally throws a DBQueryError
527 * on failure. If errors are ignored, returns false instead.
528 *
529 * If a connection loss is detected, then an attempt to reconnect will be made.
530 * For queries that involve no larger transactions or locks, they will be re-issued
531 * for convenience, provided the connection was re-established.
532 *
533 * In new code, the query wrappers select(), insert(), update(), delete(),
534 * etc. should be used where possible, since they give much better DBMS
535 * independence and automatically quote or validate user input in a variety
536 * of contexts. This function is generally only useful for queries which are
537 * explicitly DBMS-dependent and are unsupported by the query wrappers, such
538 * as CREATE TABLE.
539 *
540 * However, the query wrappers themselves should call this function.
541 *
542 * @param string $sql SQL query
543 * @param string $fname Name of the calling function, for profiling/SHOW PROCESSLIST
544 * comment (you can use __METHOD__ or add some extra info)
545 * @param int $flags Bitfield of IDatabase::QUERY_* constants. Note that suppression
546 * of errors is best handled by try/catch rather than using one of these flags.
547 * @return bool|IResultWrapper True for a successful write query, IResultWrapper object
548 * for a successful read query, or false on failure if QUERY_SILENCE_ERRORS is set.
549 * @throws DBError
550 */
551 public function query( $sql, $fname = __METHOD__, $flags = 0 );
552
553 /**
554 * Free a result object returned by query() or select(). It's usually not
555 * necessary to call this, just use unset() or let the variable holding
556 * the result object go out of scope.
557 *
558 * @param mixed $res A SQL result
559 */
560 public function freeResult( $res );
561
562 /**
563 * A SELECT wrapper which returns a single field from a single result row.
564 *
565 * Usually throws a DBQueryError on failure. If errors are explicitly
566 * ignored, returns false on failure.
567 *
568 * If no result rows are returned from the query, false is returned.
569 *
570 * @param string|array $table Table name. See IDatabase::select() for details.
571 * @param string $var The field name to select. This must be a valid SQL
572 * fragment: do not use unvalidated user input.
573 * @param string|array $cond The condition array. See IDatabase::select() for details.
574 * @param string $fname The function name of the caller.
575 * @param string|array $options The query options. See IDatabase::select() for details.
576 * @param string|array $join_conds The query join conditions. See IDatabase::select() for details.
577 *
578 * @return mixed The value from the field
579 * @throws DBError
580 */
581 public function selectField(
582 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
583 );
584
585 /**
586 * A SELECT wrapper which returns a list of single field values from result rows.
587 *
588 * Usually throws a DBQueryError on failure. If errors are explicitly
589 * ignored, returns false on failure.
590 *
591 * If no result rows are returned from the query, false is returned.
592 *
593 * @param string|array $table Table name. See IDatabase::select() for details.
594 * @param string $var The field name to select. This must be a valid SQL
595 * fragment: do not use unvalidated user input.
596 * @param string|array $cond The condition array. See IDatabase::select() for details.
597 * @param string $fname The function name of the caller.
598 * @param string|array $options The query options. See IDatabase::select() for details.
599 * @param string|array $join_conds The query join conditions. See IDatabase::select() for details.
600 *
601 * @return array The values from the field in the order they were returned from the DB
602 * @throws DBError
603 * @since 1.25
604 */
605 public function selectFieldValues(
606 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
607 );
608
609 /**
610 * Execute a SELECT query constructed using the various parameters provided.
611 * See below for full details of the parameters.
612 *
613 * @param string|array $table Table name(s)
614 *
615 * May be either an array of table names, or a single string holding a table
616 * name. If an array is given, table aliases can be specified, for example:
617 *
618 * [ 'a' => 'user' ]
619 *
620 * This includes the user table in the query, with the alias "a" available
621 * for use in field names (e.g. a.user_name).
622 *
623 * A derived table, defined by the result of selectSQLText(), requires an alias
624 * key and a Subquery instance value which wraps the SQL query, for example:
625 *
626 * [ 'c' => new Subquery( 'SELECT ...' ) ]
627 *
628 * Joins using parentheses for grouping (since MediaWiki 1.31) may be
629 * constructed using nested arrays. For example,
630 *
631 * [ 'tableA', 'nestedB' => [ 'tableB', 'b2' => 'tableB2' ] ]
632 *
633 * along with `$join_conds` like
634 *
635 * [ 'b2' => [ 'JOIN', 'b_id = b2_id' ], 'nestedB' => [ 'LEFT JOIN', 'b_a = a_id' ] ]
636 *
637 * will produce SQL something like
638 *
639 * FROM tableA LEFT JOIN (tableB JOIN tableB2 AS b2 ON (b_id = b2_id)) ON (b_a = a_id)
640 *
641 * All of the table names given here are automatically run through
642 * Database::tableName(), which causes the table prefix (if any) to be
643 * added, and various other table name mappings to be performed.
644 *
645 * Do not use untrusted user input as a table name. Alias names should
646 * not have characters outside of the Basic multilingual plane.
647 *
648 * @param string|array $vars Field name(s)
649 *
650 * May be either a field name or an array of field names. The field names
651 * can be complete fragments of SQL, for direct inclusion into the SELECT
652 * query. If an array is given, field aliases can be specified, for example:
653 *
654 * [ 'maxrev' => 'MAX(rev_id)' ]
655 *
656 * This includes an expression with the alias "maxrev" in the query.
657 *
658 * If an expression is given, care must be taken to ensure that it is
659 * DBMS-independent.
660 *
661 * Untrusted user input must not be passed to this parameter.
662 *
663 * @param string|array $conds
664 *
665 * May be either a string containing a single condition, or an array of
666 * conditions. If an array is given, the conditions constructed from each
667 * element are combined with AND.
668 *
669 * Array elements may take one of two forms:
670 *
671 * - Elements with a numeric key are interpreted as raw SQL fragments.
672 * - Elements with a string key are interpreted as equality conditions,
673 * where the key is the field name.
674 * - If the value of such an array element is a scalar (such as a
675 * string), it will be treated as data and thus quoted appropriately.
676 * If it is null, an IS NULL clause will be added.
677 * - If the value is an array, an IN (...) clause will be constructed
678 * from its non-null elements, and an IS NULL clause will be added
679 * if null is present, such that the field may match any of the
680 * elements in the array. The non-null elements will be quoted.
681 *
682 * Note that expressions are often DBMS-dependent in their syntax.
683 * DBMS-independent wrappers are provided for constructing several types of
684 * expression commonly used in condition queries. See:
685 * - IDatabase::buildLike()
686 * - IDatabase::conditional()
687 *
688 * Untrusted user input is safe in the values of string keys, however untrusted
689 * input must not be used in the array key names or in the values of numeric keys.
690 * Escaping of untrusted input used in values of numeric keys should be done via
691 * IDatabase::addQuotes()
692 *
693 * Use an empty array, string, or '*' to update all rows.
694 *
695 * @param string $fname Caller function name
696 *
697 * @param string|array $options Query options
698 *
699 * Optional: Array of query options. Boolean options are specified by
700 * including them in the array as a string value with a numeric key, for
701 * example:
702 *
703 * [ 'FOR UPDATE' ]
704 *
705 * The supported options are:
706 *
707 * - OFFSET: Skip this many rows at the start of the result set. OFFSET
708 * with LIMIT can theoretically be used for paging through a result set,
709 * but this is discouraged for performance reasons.
710 *
711 * - LIMIT: Integer: return at most this many rows. The rows are sorted
712 * and then the first rows are taken until the limit is reached. LIMIT
713 * is applied to a result set after OFFSET.
714 *
715 * - FOR UPDATE: Boolean: lock the returned rows so that they can't be
716 * changed until the next COMMIT.
717 *
718 * - DISTINCT: Boolean: return only unique result rows.
719 *
720 * - GROUP BY: May be either an SQL fragment string naming a field or
721 * expression to group by, or an array of such SQL fragments.
722 *
723 * - HAVING: May be either an string containing a HAVING clause or an array of
724 * conditions building the HAVING clause. If an array is given, the conditions
725 * constructed from each element are combined with AND.
726 *
727 * - ORDER BY: May be either an SQL fragment giving a field name or
728 * expression to order by, or an array of such SQL fragments.
729 *
730 * - USE INDEX: This may be either a string giving the index name to use
731 * for the query, or an array. If it is an associative array, each key
732 * gives the table name (or alias), each value gives the index name to
733 * use for that table. All strings are SQL fragments and so should be
734 * validated by the caller.
735 *
736 * - EXPLAIN: In MySQL, this causes an EXPLAIN SELECT query to be run,
737 * instead of SELECT.
738 *
739 * And also the following boolean MySQL extensions, see the MySQL manual
740 * for documentation:
741 *
742 * - LOCK IN SHARE MODE
743 * - STRAIGHT_JOIN
744 * - HIGH_PRIORITY
745 * - SQL_BIG_RESULT
746 * - SQL_BUFFER_RESULT
747 * - SQL_SMALL_RESULT
748 * - SQL_CALC_FOUND_ROWS
749 * - SQL_CACHE
750 * - SQL_NO_CACHE
751 *
752 *
753 * @param string|array $join_conds Join conditions
754 *
755 * Optional associative array of table-specific join conditions. In the
756 * most common case, this is unnecessary, since the join condition can be
757 * in $conds. However, it is useful for doing a LEFT JOIN.
758 *
759 * The key of the array contains the table name or alias. The value is an
760 * array with two elements, numbered 0 and 1. The first gives the type of
761 * join, the second is the same as the $conds parameter. Thus it can be
762 * an SQL fragment, or an array where the string keys are equality and the
763 * numeric keys are SQL fragments all AND'd together. For example:
764 *
765 * [ 'page' => [ 'LEFT JOIN', 'page_latest=rev_id' ] ]
766 *
767 * @return IResultWrapper Resulting rows
768 * @throws DBError
769 */
770 public function select(
771 $table, $vars, $conds = '', $fname = __METHOD__,
772 $options = [], $join_conds = []
773 );
774
775 /**
776 * The equivalent of IDatabase::select() except that the constructed SQL
777 * is returned, instead of being immediately executed. This can be useful for
778 * doing UNION queries, where the SQL text of each query is needed. In general,
779 * however, callers outside of Database classes should just use select().
780 *
781 * @see IDatabase::select()
782 *
783 * @param string|array $table Table name
784 * @param string|array $vars Field names
785 * @param string|array $conds Conditions
786 * @param string $fname Caller function name
787 * @param string|array $options Query options
788 * @param string|array $join_conds Join conditions
789 * @return string SQL query string
790 */
791 public function selectSQLText(
792 $table, $vars, $conds = '', $fname = __METHOD__,
793 $options = [], $join_conds = []
794 );
795
796 /**
797 * Single row SELECT wrapper. Equivalent to IDatabase::select(), except
798 * that a single row object is returned. If the query returns no rows,
799 * false is returned.
800 *
801 * @param string|array $table Table name
802 * @param string|array $vars Field names
803 * @param array $conds Conditions
804 * @param string $fname Caller function name
805 * @param string|array $options Query options
806 * @param array|string $join_conds Join conditions
807 *
808 * @return stdClass|bool
809 * @throws DBError
810 */
811 public function selectRow( $table, $vars, $conds, $fname = __METHOD__,
812 $options = [], $join_conds = []
813 );
814
815 /**
816 * Estimate the number of rows in dataset
817 *
818 * MySQL allows you to estimate the number of rows that would be returned
819 * by a SELECT query, using EXPLAIN SELECT. The estimate is provided using
820 * index cardinality statistics, and is notoriously inaccurate, especially
821 * when large numbers of rows have recently been added or deleted.
822 *
823 * For DBMSs that don't support fast result size estimation, this function
824 * will actually perform the SELECT COUNT(*).
825 *
826 * Takes the same arguments as IDatabase::select().
827 *
828 * @param string $table Table name
829 * @param string $var Column for which NULL values are not counted [default "*"]
830 * @param array|string $conds Filters on the table
831 * @param string $fname Function name for profiling
832 * @param array $options Options for select
833 * @param array|string $join_conds Join conditions
834 * @return int Row count
835 * @throws DBError
836 */
837 public function estimateRowCount(
838 $table, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
839 );
840
841 /**
842 * Get the number of rows in dataset
843 *
844 * This is useful when trying to do COUNT(*) but with a LIMIT for performance.
845 *
846 * Takes the same arguments as IDatabase::select().
847 *
848 * @since 1.27 Added $join_conds parameter
849 *
850 * @param array|string $tables Table names
851 * @param string $var Column for which NULL values are not counted [default "*"]
852 * @param array|string $conds Filters on the table
853 * @param string $fname Function name for profiling
854 * @param array $options Options for select
855 * @param array $join_conds Join conditions (since 1.27)
856 * @return int Row count
857 * @throws DBError
858 */
859 public function selectRowCount(
860 $tables, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
861 );
862
863 /**
864 * Lock all rows meeting the given conditions/options FOR UPDATE
865 *
866 * @param array|string $table Table names
867 * @param array|string $conds Filters on the table
868 * @param string $fname Function name for profiling
869 * @param array $options Options for select ("FOR UPDATE" is added automatically)
870 * @param array $join_conds Join conditions
871 * @return int Number of matching rows found (and locked)
872 * @since 1.32
873 */
874 public function lockForUpdate(
875 $table, $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
876 );
877
878 /**
879 * Determines whether a field exists in a table
880 *
881 * @param string $table Table name
882 * @param string $field Filed to check on that table
883 * @param string $fname Calling function name (optional)
884 * @return bool Whether $table has filed $field
885 * @throws DBError
886 */
887 public function fieldExists( $table, $field, $fname = __METHOD__ );
888
889 /**
890 * Determines whether an index exists
891 * Usually throws a DBQueryError on failure
892 * If errors are explicitly ignored, returns NULL on failure
893 *
894 * @param string $table
895 * @param string $index
896 * @param string $fname
897 * @return bool|null
898 * @throws DBError
899 */
900 public function indexExists( $table, $index, $fname = __METHOD__ );
901
902 /**
903 * Query whether a given table exists
904 *
905 * @param string $table
906 * @param string $fname
907 * @return bool
908 * @throws DBError
909 */
910 public function tableExists( $table, $fname = __METHOD__ );
911
912 /**
913 * INSERT wrapper, inserts an array into a table.
914 *
915 * $a may be either:
916 *
917 * - A single associative array. The array keys are the field names, and
918 * the values are the values to insert. The values are treated as data
919 * and will be quoted appropriately. If NULL is inserted, this will be
920 * converted to a database NULL.
921 * - An array with numeric keys, holding a list of associative arrays.
922 * This causes a multi-row INSERT on DBMSs that support it. The keys in
923 * each subarray must be identical to each other, and in the same order.
924 *
925 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
926 * returns success.
927 *
928 * $options is an array of options, with boolean options encoded as values
929 * with numeric keys, in the same style as $options in
930 * IDatabase::select(). Supported options are:
931 *
932 * - IGNORE: Boolean: if present, duplicate key errors are ignored, and
933 * any rows which cause duplicate key errors are not inserted. It's
934 * possible to determine how many rows were successfully inserted using
935 * IDatabase::affectedRows().
936 *
937 * @param string $table Table name. This will be passed through
938 * Database::tableName().
939 * @param array $a Array of rows to insert
940 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
941 * @param array $options Array of options
942 * @return bool Return true if no exception was thrown (deprecated since 1.33)
943 * @throws DBError
944 */
945 public function insert( $table, $a, $fname = __METHOD__, $options = [] );
946
947 /**
948 * UPDATE wrapper. Takes a condition array and a SET array.
949 *
950 * @param string $table Name of the table to UPDATE. This will be passed through
951 * Database::tableName().
952 * @param array $values An array of values to SET. For each array element,
953 * the key gives the field name, and the value gives the data to set
954 * that field to. The data will be quoted by IDatabase::addQuotes().
955 * Values with integer keys form unquoted SET statements, which can be used for
956 * things like "field = field + 1" or similar computed values.
957 * @param array $conds An array of conditions (WHERE). See
958 * IDatabase::select() for the details of the format of condition
959 * arrays. Use '*' to update all rows.
960 * @param string $fname The function name of the caller (from __METHOD__),
961 * for logging and profiling.
962 * @param array $options An array of UPDATE options, can be:
963 * - IGNORE: Ignore unique key conflicts
964 * - LOW_PRIORITY: MySQL-specific, see MySQL manual.
965 * @return bool Return true if no exception was thrown (deprecated since 1.33)
966 * @throws DBError
967 */
968 public function update( $table, $values, $conds, $fname = __METHOD__, $options = [] );
969
970 /**
971 * Makes an encoded list of strings from an array
972 *
973 * These can be used to make conjunctions or disjunctions on SQL condition strings
974 * derived from an array (see IDatabase::select() $conds documentation).
975 *
976 * Example usage:
977 * @code
978 * $sql = $db->makeList( [
979 * 'rev_page' => $id,
980 * $db->makeList( [ 'rev_minor' => 1, 'rev_len' < 500 ], $db::LIST_OR ] )
981 * ], $db::LIST_AND );
982 * @endcode
983 * This would set $sql to "rev_page = '$id' AND (rev_minor = '1' OR rev_len < '500')"
984 *
985 * @param array $a Containing the data
986 * @param int $mode IDatabase class constant:
987 * - IDatabase::LIST_COMMA: Comma separated, no field names
988 * - IDatabase::LIST_AND: ANDed WHERE clause (without the WHERE).
989 * - IDatabase::LIST_OR: ORed WHERE clause (without the WHERE)
990 * - IDatabase::LIST_SET: Comma separated with field names, like a SET clause
991 * - IDatabase::LIST_NAMES: Comma separated field names
992 * @throws DBError
993 * @return string
994 */
995 public function makeList( $a, $mode = self::LIST_COMMA );
996
997 /**
998 * Build a partial where clause from a 2-d array such as used for LinkBatch.
999 * The keys on each level may be either integers or strings.
1000 *
1001 * @param array $data Organized as 2-d
1002 * [ baseKeyVal => [ subKeyVal => [ignored], ... ], ... ]
1003 * @param string $baseKey Field name to match the base-level keys to (eg 'pl_namespace')
1004 * @param string $subKey Field name to match the sub-level keys to (eg 'pl_title')
1005 * @return string|bool SQL fragment, or false if no items in array
1006 */
1007 public function makeWhereFrom2d( $data, $baseKey, $subKey );
1008
1009 /**
1010 * Return aggregated value alias
1011 *
1012 * @param array $valuedata
1013 * @param string $valuename
1014 *
1015 * @return string
1016 * @deprecated Since 1.33
1017 */
1018 public function aggregateValue( $valuedata, $valuename = 'value' );
1019
1020 /**
1021 * @param string $field
1022 * @return string
1023 */
1024 public function bitNot( $field );
1025
1026 /**
1027 * @param string $fieldLeft
1028 * @param string $fieldRight
1029 * @return string
1030 */
1031 public function bitAnd( $fieldLeft, $fieldRight );
1032
1033 /**
1034 * @param string $fieldLeft
1035 * @param string $fieldRight
1036 * @return string
1037 */
1038 public function bitOr( $fieldLeft, $fieldRight );
1039
1040 /**
1041 * Build a concatenation list to feed into a SQL query
1042 * @param array $stringList List of raw SQL expressions; caller is
1043 * responsible for any quoting
1044 * @return string
1045 */
1046 public function buildConcat( $stringList );
1047
1048 /**
1049 * Build a GROUP_CONCAT or equivalent statement for a query.
1050 *
1051 * This is useful for combining a field for several rows into a single string.
1052 * NULL values will not appear in the output, duplicated values will appear,
1053 * and the resulting delimiter-separated values have no defined sort order.
1054 * Code using the results may need to use the PHP unique() or sort() methods.
1055 *
1056 * @param string $delim Glue to bind the results together
1057 * @param string|array $table Table name
1058 * @param string $field Field name
1059 * @param string|array $conds Conditions
1060 * @param string|array $join_conds Join conditions
1061 * @return string SQL text
1062 * @since 1.23
1063 */
1064 public function buildGroupConcatField(
1065 $delim, $table, $field, $conds = '', $join_conds = []
1066 );
1067
1068 /**
1069 * Build a SUBSTRING function.
1070 *
1071 * Behavior for non-ASCII values is undefined.
1072 *
1073 * @param string $input Field name
1074 * @param int $startPosition Positive integer
1075 * @param int|null $length Non-negative integer length or null for no limit
1076 * @throws InvalidArgumentException
1077 * @return string SQL text
1078 * @since 1.31
1079 */
1080 public function buildSubString( $input, $startPosition, $length = null );
1081
1082 /**
1083 * @param string $field Field or column to cast
1084 * @return string
1085 * @since 1.28
1086 */
1087 public function buildStringCast( $field );
1088
1089 /**
1090 * @param string $field Field or column to cast
1091 * @return string
1092 * @since 1.31
1093 */
1094 public function buildIntegerCast( $field );
1095
1096 /**
1097 * Equivalent to IDatabase::selectSQLText() except wraps the result in Subqyery
1098 *
1099 * @see IDatabase::selectSQLText()
1100 *
1101 * @param string|array $table Table name
1102 * @param string|array $vars Field names
1103 * @param string|array $conds Conditions
1104 * @param string $fname Caller function name
1105 * @param string|array $options Query options
1106 * @param string|array $join_conds Join conditions
1107 * @return Subquery
1108 * @since 1.31
1109 */
1110 public function buildSelectSubquery(
1111 $table, $vars, $conds = '', $fname = __METHOD__,
1112 $options = [], $join_conds = []
1113 );
1114
1115 /**
1116 * Returns true if DBs are assumed to be on potentially different servers
1117 *
1118 * In systems like mysql/mariadb, different databases can easily be referenced on a single
1119 * connection merely by name, even in a single query via JOIN. On the other hand, Postgres
1120 * treats databases as fully separate, only allowing mechanisms like postgres_fdw to
1121 * effectively "mount" foreign DBs. This is true even among DBs on the same server.
1122 *
1123 * @return bool
1124 * @since 1.29
1125 */
1126 public function databasesAreIndependent();
1127
1128 /**
1129 * Change the current database
1130 *
1131 * This should not be called outside LoadBalancer for connections managed by a LoadBalancer
1132 *
1133 * @param string $db
1134 * @return bool True unless an exception was thrown
1135 * @throws DBConnectionError If databasesAreIndependent() is true and an error occurs
1136 * @throws DBError
1137 * @deprecated Since 1.32 Use selectDomain() instead
1138 */
1139 public function selectDB( $db );
1140
1141 /**
1142 * Set the current domain (database, schema, and table prefix)
1143 *
1144 * This will throw an error for some database types if the database unspecified
1145 *
1146 * This should not be called outside LoadBalancer for connections managed by a LoadBalancer
1147 *
1148 * @param string|DatabaseDomain $domain
1149 * @since 1.32
1150 * @throws DBConnectionError
1151 */
1152 public function selectDomain( $domain );
1153
1154 /**
1155 * Get the current DB name
1156 * @return string|null
1157 */
1158 public function getDBname();
1159
1160 /**
1161 * Get the server hostname or IP address
1162 * @return string
1163 */
1164 public function getServer();
1165
1166 /**
1167 * Adds quotes and backslashes.
1168 *
1169 * @param string|int|null|bool|Blob $s
1170 * @return string|int
1171 */
1172 public function addQuotes( $s );
1173
1174 /**
1175 * Quotes an identifier, in order to make user controlled input safe
1176 *
1177 * Depending on the database this will either be `backticks` or "double quotes"
1178 *
1179 * @param string $s
1180 * @return string
1181 * @since 1.33
1182 */
1183 public function addIdentifierQuotes( $s );
1184
1185 /**
1186 * LIKE statement wrapper, receives a variable-length argument list with
1187 * parts of pattern to match containing either string literals that will be
1188 * escaped or tokens returned by anyChar() or anyString(). Alternatively,
1189 * the function could be provided with an array of aforementioned
1190 * parameters.
1191 *
1192 * Example: $dbr->buildLike( 'My_page_title/', $dbr->anyString() ) returns
1193 * a LIKE clause that searches for subpages of 'My page title'.
1194 * Alternatively:
1195 * $pattern = [ 'My_page_title/', $dbr->anyString() ];
1196 * $query .= $dbr->buildLike( $pattern );
1197 *
1198 * @since 1.16
1199 * @return string Fully built LIKE statement
1200 */
1201 public function buildLike();
1202
1203 /**
1204 * Returns a token for buildLike() that denotes a '_' to be used in a LIKE query
1205 *
1206 * @return LikeMatch
1207 */
1208 public function anyChar();
1209
1210 /**
1211 * Returns a token for buildLike() that denotes a '%' to be used in a LIKE query
1212 *
1213 * @return LikeMatch
1214 */
1215 public function anyString();
1216
1217 /**
1218 * Deprecated method, calls should be removed.
1219 *
1220 * This was formerly used for PostgreSQL and Oracle to handle
1221 * self::insertId() auto-incrementing fields. It is no longer necessary
1222 * since DatabasePostgres::insertId() has been reimplemented using
1223 * `lastval()` and Oracle has been reimplemented using triggers.
1224 *
1225 * Implementations should return null if inserting `NULL` into an
1226 * auto-incrementing field works, otherwise it should return an instance of
1227 * NextSequenceValue and filter it on calls to relevant methods.
1228 *
1229 * @deprecated since 1.30, no longer needed
1230 * @param string $seqName
1231 * @return null|NextSequenceValue
1232 */
1233 public function nextSequenceValue( $seqName );
1234
1235 /**
1236 * REPLACE query wrapper.
1237 *
1238 * REPLACE is a very handy MySQL extension, which functions like an INSERT
1239 * except that when there is a duplicate key error, the old row is deleted
1240 * and the new row is inserted in its place.
1241 *
1242 * We simulate this with standard SQL with a DELETE followed by INSERT. To
1243 * perform the delete, we need to know what the unique indexes are so that
1244 * we know how to find the conflicting rows.
1245 *
1246 * It may be more efficient to leave off unique indexes which are unlikely
1247 * to collide. However if you do this, you run the risk of encountering
1248 * errors which wouldn't have occurred in MySQL.
1249 *
1250 * @param string $table The table to replace the row(s) in.
1251 * @param array[]|string[]|string $uniqueIndexes All unique indexes. One of the following:
1252 * a) the one unique field in the table (when no composite unique key exist)
1253 * b) a list of all unique fields in the table (when no composite unique key exist)
1254 * c) a list of all unique indexes in the table (each as a list of the indexed fields)
1255 * @param array $rows Can be either a single row to insert, or multiple rows,
1256 * in the same format as for IDatabase::insert()
1257 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1258 * @throws DBError
1259 */
1260 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ );
1261
1262 /**
1263 * INSERT ON DUPLICATE KEY UPDATE wrapper, upserts an array into a table.
1264 *
1265 * This updates any conflicting rows (according to the unique indexes) using
1266 * the provided SET clause and inserts any remaining (non-conflicted) rows.
1267 *
1268 * $rows may be either:
1269 * - A single associative array. The array keys are the field names, and
1270 * the values are the values to insert. The values are treated as data
1271 * and will be quoted appropriately. If NULL is inserted, this will be
1272 * converted to a database NULL.
1273 * - An array with numeric keys, holding a list of associative arrays.
1274 * This causes a multi-row INSERT on DBMSs that support it. The keys in
1275 * each subarray must be identical to each other, and in the same order.
1276 *
1277 * It may be more efficient to leave off unique indexes which are unlikely
1278 * to collide. However if you do this, you run the risk of encountering
1279 * errors which wouldn't have occurred in MySQL.
1280 *
1281 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
1282 * returns success.
1283 *
1284 * @since 1.22
1285 *
1286 * @param string $table Table name. This will be passed through Database::tableName().
1287 * @param array $rows A single row or list of rows to insert
1288 * @param array[]|string[]|string $uniqueIndexes All unique indexes. One of the following:
1289 * a) the one unique field in the table (when no composite unique key exist)
1290 * b) a list of all unique fields in the table (when no composite unique key exist)
1291 * c) a list of all unique indexes in the table (each as a list of the indexed fields)
1292 * @param array $set An array of values to SET. For each array element, the
1293 * key gives the field name, and the value gives the data to set that
1294 * field to. The data will be quoted by IDatabase::addQuotes().
1295 * Values with integer keys form unquoted SET statements, which can be used for
1296 * things like "field = field + 1" or similar computed values.
1297 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1298 * @throws DBError
1299 * @return bool Return true if no exception was thrown (deprecated since 1.33)
1300 */
1301 public function upsert(
1302 $table, array $rows, $uniqueIndexes, array $set, $fname = __METHOD__
1303 );
1304
1305 /**
1306 * DELETE where the condition is a join.
1307 *
1308 * MySQL overrides this to use a multi-table DELETE syntax, in other databases
1309 * we use sub-selects
1310 *
1311 * For safety, an empty $conds will not delete everything. If you want to
1312 * delete all rows where the join condition matches, set $conds='*'.
1313 *
1314 * DO NOT put the join condition in $conds.
1315 *
1316 * @param string $delTable The table to delete from.
1317 * @param string $joinTable The other table.
1318 * @param string $delVar The variable to join on, in the first table.
1319 * @param string $joinVar The variable to join on, in the second table.
1320 * @param array $conds Condition array of field names mapped to variables,
1321 * ANDed together in the WHERE clause
1322 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1323 * @throws DBError
1324 */
1325 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
1326 $fname = __METHOD__
1327 );
1328
1329 /**
1330 * DELETE query wrapper.
1331 *
1332 * @param string $table Table name
1333 * @param string|array $conds Array of conditions. See $conds in IDatabase::select()
1334 * for the format. Use $conds == "*" to delete all rows
1335 * @param string $fname Name of the calling function
1336 * @throws DBUnexpectedError
1337 * @return bool Return true if no exception was thrown (deprecated since 1.33)
1338 * @throws DBError
1339 */
1340 public function delete( $table, $conds, $fname = __METHOD__ );
1341
1342 /**
1343 * INSERT SELECT wrapper. Takes data from a SELECT query and inserts it
1344 * into another table.
1345 *
1346 * @warning If the insert will use an auto-increment or sequence to
1347 * determine the value of a column, this may break replication on
1348 * databases using statement-based replication if the SELECT is not
1349 * deterministically ordered.
1350 *
1351 * @param string $destTable The table name to insert into
1352 * @param string|array $srcTable May be either a table name, or an array of table names
1353 * to include in a join.
1354 *
1355 * @param array $varMap Must be an associative array of the form
1356 * [ 'dest1' => 'source1', ... ]. Source items may be literals
1357 * rather than field names, but strings should be quoted with
1358 * IDatabase::addQuotes()
1359 *
1360 * @param array $conds Condition array. See $conds in IDatabase::select() for
1361 * the details of the format of condition arrays. May be "*" to copy the
1362 * whole table.
1363 *
1364 * @param string $fname The function name of the caller, from __METHOD__
1365 *
1366 * @param array $insertOptions Options for the INSERT part of the query, see
1367 * IDatabase::insert() for details. Also, one additional option is
1368 * available: pass 'NO_AUTO_COLUMNS' to hint that the query does not use
1369 * an auto-increment or sequence to determine any column values.
1370 * @param array $selectOptions Options for the SELECT part of the query, see
1371 * IDatabase::select() for details.
1372 * @param array $selectJoinConds Join conditions for the SELECT part of the query, see
1373 * IDatabase::select() for details.
1374 *
1375 * @return bool Return true if no exception was thrown (deprecated since 1.33)
1376 * @throws DBError
1377 */
1378 public function insertSelect( $destTable, $srcTable, $varMap, $conds,
1379 $fname = __METHOD__,
1380 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
1381 );
1382
1383 /**
1384 * Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries
1385 * within the UNION construct.
1386 * @return bool
1387 */
1388 public function unionSupportsOrderAndLimit();
1389
1390 /**
1391 * Construct a UNION query
1392 * This is used for providing overload point for other DB abstractions
1393 * not compatible with the MySQL syntax.
1394 * @param array $sqls SQL statements to combine
1395 * @param bool $all Either IDatabase::UNION_ALL or IDatabase::UNION_DISTINCT
1396 * @return string SQL fragment
1397 */
1398 public function unionQueries( $sqls, $all );
1399
1400 /**
1401 * Construct a UNION query for permutations of conditions
1402 *
1403 * Databases sometimes have trouble with queries that have multiple values
1404 * for multiple condition parameters combined with limits and ordering.
1405 * This method constructs queries for the Cartesian product of the
1406 * conditions and unions them all together.
1407 *
1408 * @see IDatabase::select()
1409 * @since 1.30
1410 * @param string|array $table Table name
1411 * @param string|array $vars Field names
1412 * @param array $permute_conds Conditions for the Cartesian product. Keys
1413 * are field names, values are arrays of the possible values for that
1414 * field.
1415 * @param string|array $extra_conds Additional conditions to include in the
1416 * query.
1417 * @param string $fname Caller function name
1418 * @param string|array $options Query options. In addition to the options
1419 * recognized by IDatabase::select(), the following may be used:
1420 * - NOTALL: Set to use UNION instead of UNION ALL.
1421 * - INNER ORDER BY: If specified and supported, subqueries will use this
1422 * instead of ORDER BY.
1423 * @param string|array $join_conds Join conditions
1424 * @return string SQL query string.
1425 */
1426 public function unionConditionPermutations(
1427 $table, $vars, array $permute_conds, $extra_conds = '', $fname = __METHOD__,
1428 $options = [], $join_conds = []
1429 );
1430
1431 /**
1432 * Returns an SQL expression for a simple conditional. This doesn't need
1433 * to be overridden unless CASE isn't supported in your DBMS.
1434 *
1435 * @param string|array $cond SQL expression which will result in a boolean value
1436 * @param string $trueVal SQL expression to return if true
1437 * @param string $falseVal SQL expression to return if false
1438 * @return string SQL fragment
1439 */
1440 public function conditional( $cond, $trueVal, $falseVal );
1441
1442 /**
1443 * Returns a command for str_replace function in SQL query.
1444 * Uses REPLACE() in MySQL
1445 *
1446 * @param string $orig Column to modify
1447 * @param string $old Column to seek
1448 * @param string $new Column to replace with
1449 *
1450 * @return string
1451 */
1452 public function strreplace( $orig, $old, $new );
1453
1454 /**
1455 * Determines how long the server has been up
1456 *
1457 * @return int
1458 * @throws DBError
1459 */
1460 public function getServerUptime();
1461
1462 /**
1463 * Determines if the last failure was due to a deadlock
1464 *
1465 * Note that during a deadlock, the prior transaction will have been lost
1466 *
1467 * @return bool
1468 */
1469 public function wasDeadlock();
1470
1471 /**
1472 * Determines if the last failure was due to a lock timeout
1473 *
1474 * Note that during a lock wait timeout, the prior transaction will have been lost
1475 *
1476 * @return bool
1477 */
1478 public function wasLockTimeout();
1479
1480 /**
1481 * Determines if the last query error was due to a dropped connection
1482 *
1483 * Note that during a connection loss, the prior transaction will have been lost
1484 *
1485 * @return bool
1486 * @since 1.31
1487 */
1488 public function wasConnectionLoss();
1489
1490 /**
1491 * Determines if the last failure was due to the database being read-only.
1492 *
1493 * @return bool
1494 */
1495 public function wasReadOnlyError();
1496
1497 /**
1498 * Determines if the last query error was due to something outside of the query itself
1499 *
1500 * Note that the transaction may have been lost, discarding prior writes and results
1501 *
1502 * @return bool
1503 */
1504 public function wasErrorReissuable();
1505
1506 /**
1507 * Wait for the replica DB to catch up to a given master position
1508 *
1509 * Note that this does not start any new transactions. If any existing transaction
1510 * is flushed, and this is called, then queries will reflect the point the DB was synced
1511 * up to (on success) without interference from REPEATABLE-READ snapshots.
1512 *
1513 * @param DBMasterPos $pos
1514 * @param int $timeout The maximum number of seconds to wait for synchronisation
1515 * @return int|null Zero if the replica DB was past that position already,
1516 * greater than zero if we waited for some period of time, less than
1517 * zero if it timed out, and null on error
1518 * @throws DBError
1519 */
1520 public function masterPosWait( DBMasterPos $pos, $timeout );
1521
1522 /**
1523 * Get the replication position of this replica DB
1524 *
1525 * @return DBMasterPos|bool False if this is not a replica DB
1526 * @throws DBError
1527 */
1528 public function getReplicaPos();
1529
1530 /**
1531 * Get the position of this master
1532 *
1533 * @return DBMasterPos|bool False if this is not a master
1534 * @throws DBError
1535 */
1536 public function getMasterPos();
1537
1538 /**
1539 * @return bool Whether the DB is marked as read-only server-side
1540 * @since 1.28
1541 */
1542 public function serverIsReadOnly();
1543
1544 /**
1545 * Run a callback as soon as the current transaction commits or rolls back.
1546 * An error is thrown if no transaction is pending. Queries in the function will run in
1547 * AUTOCOMMIT mode unless there are begin() calls. Callbacks must commit any transactions
1548 * that they begin.
1549 *
1550 * This is useful for combining cooperative locks and DB transactions.
1551 *
1552 * @note do not assume that *other* IDatabase instances will be AUTOCOMMIT mode
1553 *
1554 * The callback takes the following arguments:
1555 * - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK)
1556 * - This IDatabase instance (since 1.32)
1557 *
1558 * @param callable $callback
1559 * @param string $fname Caller name
1560 * @since 1.28
1561 */
1562 public function onTransactionResolution( callable $callback, $fname = __METHOD__ );
1563
1564 /**
1565 * Run a callback as soon as there is no transaction pending.
1566 * If there is a transaction and it is rolled back, then the callback is cancelled.
1567 *
1568 * When transaction round mode (DBO_TRX) is set, the callback will run at the end
1569 * of the round, just after all peer transactions COMMIT. If the transaction round
1570 * is rolled back, then the callback is cancelled.
1571 *
1572 * Queries in the function will run in AUTOCOMMIT mode unless there are begin() calls.
1573 * Callbacks must commit any transactions that they begin.
1574 *
1575 * This is useful for updates to different systems or when separate transactions are needed.
1576 * For example, one might want to enqueue jobs into a system outside the database, but only
1577 * after the database is updated so that the jobs will see the data when they actually run.
1578 * It can also be used for updates that easily suffer from lock timeouts and deadlocks,
1579 * but where atomicity is not essential.
1580 *
1581 * Avoid using IDatabase instances aside from this one in the callback, unless such instances
1582 * never have IDatabase::DBO_TRX set. This keeps callbacks from interfering with one another.
1583 *
1584 * Updates will execute in the order they were enqueued.
1585 *
1586 * @note do not assume that *other* IDatabase instances will be AUTOCOMMIT mode
1587 *
1588 * The callback takes the following arguments:
1589 * - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_IDLE)
1590 * - This IDatabase instance (since 1.32)
1591 *
1592 * @param callable $callback
1593 * @param string $fname Caller name
1594 * @since 1.32
1595 */
1596 public function onTransactionCommitOrIdle( callable $callback, $fname = __METHOD__ );
1597
1598 /**
1599 * Alias for onTransactionCommitOrIdle() for backwards-compatibility
1600 *
1601 * @param callable $callback
1602 * @param string $fname
1603 * @since 1.20
1604 * @deprecated Since 1.32
1605 */
1606 public function onTransactionIdle( callable $callback, $fname = __METHOD__ );
1607
1608 /**
1609 * Run a callback before the current transaction commits or now if there is none.
1610 * If there is a transaction and it is rolled back, then the callback is cancelled.
1611 *
1612 * When transaction round mode (DBO_TRX) is set, the callback will run at the end
1613 * of the round, just before all peer transactions COMMIT. If the transaction round
1614 * is rolled back, then the callback is cancelled.
1615 *
1616 * Callbacks must not start nor commit any transactions. If no transaction is active,
1617 * then a transaction will wrap the callback.
1618 *
1619 * This is useful for updates that easily suffer from lock timeouts and deadlocks,
1620 * but where atomicity is strongly desired for these updates and some related updates.
1621 *
1622 * Updates will execute in the order they were enqueued.
1623 *
1624 * The callback takes the one argument:
1625 * - This IDatabase instance (since 1.32)
1626 *
1627 * @param callable $callback
1628 * @param string $fname Caller name
1629 * @since 1.22
1630 */
1631 public function onTransactionPreCommitOrIdle( callable $callback, $fname = __METHOD__ );
1632
1633 /**
1634 * Run a callback after each time any transaction commits or rolls back
1635 *
1636 * The callback takes two arguments:
1637 * - IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK
1638 * - This IDatabase object
1639 * Callbacks must commit any transactions that they begin.
1640 *
1641 * Registering a callback here will not affect writesOrCallbacks() pending.
1642 *
1643 * Since callbacks from this or onTransactionCommitOrIdle() can start and end transactions,
1644 * a single call to IDatabase::commit might trigger multiple runs of the listener callbacks.
1645 *
1646 * @param string $name Callback name
1647 * @param callable|null $callback Use null to unset a listener
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 * @since 1.31
2176 */
2177 public function setIndexAliases( array $aliases );
2178 }
2179
2180 /**
2181 * @deprecated since 1.29
2182 */
2183 class_alias( IDatabase::class, 'IDatabase' );