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