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