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