Merge "Fix the Rubocop offense AmbiguousRegexpLiteral"
[mediawiki.git] / includes / db / DatabaseSqlite.php
blob95c44dfaf3d35c1c9433b2b9888637c5397d78e1
1 <?php
2 /**
3 * This is the SQLite database abstraction layer.
4 * See maintenance/sqlite/README for development notes and other specific information
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
21 * @file
22 * @ingroup Database
25 /**
26 * @ingroup Database
28 class DatabaseSqlite extends DatabaseBase {
29 /** @var bool Whether full text is enabled */
30 private static $fulltextEnabled = null;
32 /** @var string File name for SQLite database file */
33 public $mDatabaseFile;
35 /** @var int The number of rows affected as an integer */
36 protected $mAffectedRows;
38 /** @var resource */
39 protected $mLastResult;
41 /** @var PDO */
42 protected $mConn;
44 /** @var FSLockManager (hopefully on the same server as the DB) */
45 protected $lockMgr;
47 function __construct( $p = null ) {
48 global $wgSharedDB, $wgSQLiteDataDir;
50 if ( !is_array( $p ) ) { // legacy calling pattern
51 wfDeprecated( __METHOD__ . " method called without parameter array.", "1.22" );
52 $args = func_get_args();
53 $p = array(
54 'host' => isset( $args[0] ) ? $args[0] : false,
55 'user' => isset( $args[1] ) ? $args[1] : false,
56 'password' => isset( $args[2] ) ? $args[2] : false,
57 'dbname' => isset( $args[3] ) ? $args[3] : false,
58 'flags' => isset( $args[4] ) ? $args[4] : 0,
59 'tablePrefix' => isset( $args[5] ) ? $args[5] : 'get from global',
60 'schema' => 'get from global',
61 'foreign' => isset( $args[6] ) ? $args[6] : false
64 $this->mDBname = $p['dbname'];
65 parent::__construct( $p );
66 // parent doesn't open when $user is false, but we can work with $dbName
67 if ( $p['dbname'] && !$this->isOpen() ) {
68 if ( $this->open( $p['host'], $p['user'], $p['password'], $p['dbname'] ) ) {
69 if ( $wgSharedDB ) {
70 $this->attachDatabase( $wgSharedDB );
75 $this->lockMgr = new FSLockManager( array( 'lockDirectory' => "$wgSQLiteDataDir/locks" ) );
78 /**
79 * @return string
81 function getType() {
82 return 'sqlite';
85 /**
86 * @todo Check if it should be true like parent class
88 * @return bool
90 function implicitGroupby() {
91 return false;
94 /** Open an SQLite database and return a resource handle to it
95 * NOTE: only $dbName is used, the other parameters are irrelevant for SQLite databases
97 * @param string $server
98 * @param string $user
99 * @param string $pass
100 * @param string $dbName
102 * @throws DBConnectionError
103 * @return PDO
105 function open( $server, $user, $pass, $dbName ) {
106 global $wgSQLiteDataDir;
108 $this->close();
109 $fileName = self::generateFileName( $wgSQLiteDataDir, $dbName );
110 if ( !is_readable( $fileName ) ) {
111 $this->mConn = false;
112 throw new DBConnectionError( $this, "SQLite database not accessible" );
114 $this->openFile( $fileName );
116 return $this->mConn;
120 * Opens a database file
122 * @param string $fileName
123 * @throws DBConnectionError
124 * @return PDO|bool SQL connection or false if failed
126 function openFile( $fileName ) {
127 $err = false;
129 $this->mDatabaseFile = $fileName;
130 try {
131 if ( $this->mFlags & DBO_PERSISTENT ) {
132 $this->mConn = new PDO( "sqlite:$fileName", '', '',
133 array( PDO::ATTR_PERSISTENT => true ) );
134 } else {
135 $this->mConn = new PDO( "sqlite:$fileName", '', '' );
137 } catch ( PDOException $e ) {
138 $err = $e->getMessage();
141 if ( !$this->mConn ) {
142 wfDebug( "DB connection error: $err\n" );
143 throw new DBConnectionError( $this, $err );
146 $this->mOpened = !!$this->mConn;
147 if ( $this->mOpened ) {
148 # Set error codes only, don't raise exceptions
149 $this->mConn->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT );
150 # Enforce LIKE to be case sensitive, just like MySQL
151 $this->query( 'PRAGMA case_sensitive_like = 1' );
153 return $this->mConn;
156 return false;
160 * Does not actually close the connection, just destroys the reference for GC to do its work
161 * @return bool
163 protected function closeConnection() {
164 $this->mConn = null;
166 return true;
170 * Generates a database file name. Explicitly public for installer.
171 * @param string $dir Directory where database resides
172 * @param string $dbName Database name
173 * @return string
175 public static function generateFileName( $dir, $dbName ) {
176 return "$dir/$dbName.sqlite";
180 * Check if the searchindext table is FTS enabled.
181 * @return bool False if not enabled.
183 function checkForEnabledSearch() {
184 if ( self::$fulltextEnabled === null ) {
185 self::$fulltextEnabled = false;
186 $table = $this->tableName( 'searchindex' );
187 $res = $this->query( "SELECT sql FROM sqlite_master WHERE tbl_name = '$table'", __METHOD__ );
188 if ( $res ) {
189 $row = $res->fetchRow();
190 self::$fulltextEnabled = stristr( $row['sql'], 'fts' ) !== false;
194 return self::$fulltextEnabled;
198 * Returns version of currently supported SQLite fulltext search module or false if none present.
199 * @return string
201 static function getFulltextSearchModule() {
202 static $cachedResult = null;
203 if ( $cachedResult !== null ) {
204 return $cachedResult;
206 $cachedResult = false;
207 $table = 'dummy_search_test';
209 $db = new DatabaseSqliteStandalone( ':memory:' );
211 if ( $db->query( "CREATE VIRTUAL TABLE $table USING FTS3(dummy_field)", __METHOD__, true ) ) {
212 $cachedResult = 'FTS3';
214 $db->close();
216 return $cachedResult;
220 * Attaches external database to our connection, see http://sqlite.org/lang_attach.html
221 * for details.
223 * @param string $name Database name to be used in queries like
224 * SELECT foo FROM dbname.table
225 * @param bool|string $file Database file name. If omitted, will be generated
226 * using $name and $wgSQLiteDataDir
227 * @param string $fname Calling function name
228 * @return ResultWrapper
230 function attachDatabase( $name, $file = false, $fname = __METHOD__ ) {
231 global $wgSQLiteDataDir;
232 if ( !$file ) {
233 $file = self::generateFileName( $wgSQLiteDataDir, $name );
235 $file = $this->addQuotes( $file );
237 return $this->query( "ATTACH DATABASE $file AS $name", $fname );
241 * @see DatabaseBase::isWriteQuery()
243 * @param string $sql
244 * @return bool
246 function isWriteQuery( $sql ) {
247 return parent::isWriteQuery( $sql ) && !preg_match( '/^ATTACH\b/i', $sql );
251 * SQLite doesn't allow buffered results or data seeking etc, so we'll use fetchAll as the result
253 * @param string $sql
254 * @return bool|ResultWrapper
256 protected function doQuery( $sql ) {
257 $res = $this->mConn->query( $sql );
258 if ( $res === false ) {
259 return false;
260 } else {
261 $r = $res instanceof ResultWrapper ? $res->result : $res;
262 $this->mAffectedRows = $r->rowCount();
263 $res = new ResultWrapper( $this, $r->fetchAll() );
266 return $res;
270 * @param ResultWrapper|mixed $res
272 function freeResult( $res ) {
273 if ( $res instanceof ResultWrapper ) {
274 $res->result = null;
275 } else {
276 $res = null;
281 * @param ResultWrapper|array $res
282 * @return stdClass|bool
284 function fetchObject( $res ) {
285 if ( $res instanceof ResultWrapper ) {
286 $r =& $res->result;
287 } else {
288 $r =& $res;
291 $cur = current( $r );
292 if ( is_array( $cur ) ) {
293 next( $r );
294 $obj = new stdClass;
295 foreach ( $cur as $k => $v ) {
296 if ( !is_numeric( $k ) ) {
297 $obj->$k = $v;
301 return $obj;
304 return false;
308 * @param ResultWrapper|mixed $res
309 * @return array|bool
311 function fetchRow( $res ) {
312 if ( $res instanceof ResultWrapper ) {
313 $r =& $res->result;
314 } else {
315 $r =& $res;
317 $cur = current( $r );
318 if ( is_array( $cur ) ) {
319 next( $r );
321 return $cur;
324 return false;
328 * The PDO::Statement class implements the array interface so count() will work
330 * @param ResultWrapper|array $res
331 * @return int
333 function numRows( $res ) {
334 $r = $res instanceof ResultWrapper ? $res->result : $res;
336 return count( $r );
340 * @param ResultWrapper $res
341 * @return int
343 function numFields( $res ) {
344 $r = $res instanceof ResultWrapper ? $res->result : $res;
345 if ( is_array( $r ) && count( $r ) > 0 ) {
346 // The size of the result array is twice the number of fields. (Bug: 65578)
347 return count( $r[0] ) / 2;
348 } else {
349 // If the result is empty return 0
350 return 0;
355 * @param ResultWrapper $res
356 * @param int $n
357 * @return bool
359 function fieldName( $res, $n ) {
360 $r = $res instanceof ResultWrapper ? $res->result : $res;
361 if ( is_array( $r ) ) {
362 $keys = array_keys( $r[0] );
364 return $keys[$n];
367 return false;
371 * Use MySQL's naming (accounts for prefix etc) but remove surrounding backticks
373 * @param string $name
374 * @param string $format
375 * @return string
377 function tableName( $name, $format = 'quoted' ) {
378 // table names starting with sqlite_ are reserved
379 if ( strpos( $name, 'sqlite_' ) === 0 ) {
380 return $name;
383 return str_replace( '"', '', parent::tableName( $name, $format ) );
387 * Index names have DB scope
389 * @param string $index
390 * @return string
392 function indexName( $index ) {
393 return $index;
397 * This must be called after nextSequenceVal
399 * @return int
401 function insertId() {
402 // PDO::lastInsertId yields a string :(
403 return intval( $this->mConn->lastInsertId() );
407 * @param ResultWrapper|array $res
408 * @param int $row
410 function dataSeek( $res, $row ) {
411 if ( $res instanceof ResultWrapper ) {
412 $r =& $res->result;
413 } else {
414 $r =& $res;
416 reset( $r );
417 if ( $row > 0 ) {
418 for ( $i = 0; $i < $row; $i++ ) {
419 next( $r );
425 * @return string
427 function lastError() {
428 if ( !is_object( $this->mConn ) ) {
429 return "Cannot return last error, no db connection";
431 $e = $this->mConn->errorInfo();
433 return isset( $e[2] ) ? $e[2] : '';
437 * @return string
439 function lastErrno() {
440 if ( !is_object( $this->mConn ) ) {
441 return "Cannot return last error, no db connection";
442 } else {
443 $info = $this->mConn->errorInfo();
445 return $info[1];
450 * @return int
452 function affectedRows() {
453 return $this->mAffectedRows;
457 * Returns information about an index
458 * Returns false if the index does not exist
459 * - if errors are explicitly ignored, returns NULL on failure
461 * @param string $table
462 * @param string $index
463 * @param string $fname
464 * @return array
466 function indexInfo( $table, $index, $fname = __METHOD__ ) {
467 $sql = 'PRAGMA index_info(' . $this->addQuotes( $this->indexName( $index ) ) . ')';
468 $res = $this->query( $sql, $fname );
469 if ( !$res ) {
470 return null;
472 if ( $res->numRows() == 0 ) {
473 return false;
475 $info = array();
476 foreach ( $res as $row ) {
477 $info[] = $row->name;
480 return $info;
484 * @param string $table
485 * @param string $index
486 * @param string $fname
487 * @return bool|null
489 function indexUnique( $table, $index, $fname = __METHOD__ ) {
490 $row = $this->selectRow( 'sqlite_master', '*',
491 array(
492 'type' => 'index',
493 'name' => $this->indexName( $index ),
494 ), $fname );
495 if ( !$row || !isset( $row->sql ) ) {
496 return null;
499 // $row->sql will be of the form CREATE [UNIQUE] INDEX ...
500 $indexPos = strpos( $row->sql, 'INDEX' );
501 if ( $indexPos === false ) {
502 return null;
504 $firstPart = substr( $row->sql, 0, $indexPos );
505 $options = explode( ' ', $firstPart );
507 return in_array( 'UNIQUE', $options );
511 * Filter the options used in SELECT statements
513 * @param array $options
514 * @return array
516 function makeSelectOptions( $options ) {
517 foreach ( $options as $k => $v ) {
518 if ( is_numeric( $k ) && ( $v == 'FOR UPDATE' || $v == 'LOCK IN SHARE MODE' ) ) {
519 $options[$k] = '';
523 return parent::makeSelectOptions( $options );
527 * @param array $options
528 * @return string
530 protected function makeUpdateOptionsArray( $options ) {
531 $options = parent::makeUpdateOptionsArray( $options );
532 $options = self::fixIgnore( $options );
534 return $options;
538 * @param array $options
539 * @return array
541 static function fixIgnore( $options ) {
542 # SQLite uses OR IGNORE not just IGNORE
543 foreach ( $options as $k => $v ) {
544 if ( $v == 'IGNORE' ) {
545 $options[$k] = 'OR IGNORE';
549 return $options;
553 * @param array $options
554 * @return string
556 function makeInsertOptions( $options ) {
557 $options = self::fixIgnore( $options );
559 return parent::makeInsertOptions( $options );
563 * Based on generic method (parent) with some prior SQLite-sepcific adjustments
564 * @param string $table
565 * @param array $a
566 * @param string $fname
567 * @param array $options
568 * @return bool
570 function insert( $table, $a, $fname = __METHOD__, $options = array() ) {
571 if ( !count( $a ) ) {
572 return true;
575 # SQLite can't handle multi-row inserts, so divide up into multiple single-row inserts
576 if ( isset( $a[0] ) && is_array( $a[0] ) ) {
577 $ret = true;
578 foreach ( $a as $v ) {
579 if ( !parent::insert( $table, $v, "$fname/multi-row", $options ) ) {
580 $ret = false;
583 } else {
584 $ret = parent::insert( $table, $a, "$fname/single-row", $options );
587 return $ret;
591 * @param string $table
592 * @param array $uniqueIndexes Unused
593 * @param string|array $rows
594 * @param string $fname
595 * @return bool|ResultWrapper
597 function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ ) {
598 if ( !count( $rows ) ) {
599 return true;
602 # SQLite can't handle multi-row replaces, so divide up into multiple single-row queries
603 if ( isset( $rows[0] ) && is_array( $rows[0] ) ) {
604 $ret = true;
605 foreach ( $rows as $v ) {
606 if ( !$this->nativeReplace( $table, $v, "$fname/multi-row" ) ) {
607 $ret = false;
610 } else {
611 $ret = $this->nativeReplace( $table, $rows, "$fname/single-row" );
614 return $ret;
618 * Returns the size of a text field, or -1 for "unlimited"
619 * In SQLite this is SQLITE_MAX_LENGTH, by default 1GB. No way to query it though.
621 * @param string $table
622 * @param string $field
623 * @return int
625 function textFieldSize( $table, $field ) {
626 return -1;
630 * @return bool
632 function unionSupportsOrderAndLimit() {
633 return false;
637 * @param string $sqls
638 * @param bool $all Whether to "UNION ALL" or not
639 * @return string
641 function unionQueries( $sqls, $all ) {
642 $glue = $all ? ' UNION ALL ' : ' UNION ';
644 return implode( $glue, $sqls );
648 * @return bool
650 function wasDeadlock() {
651 return $this->lastErrno() == 5; // SQLITE_BUSY
655 * @return bool
657 function wasErrorReissuable() {
658 return $this->lastErrno() == 17; // SQLITE_SCHEMA;
662 * @return bool
664 function wasReadOnlyError() {
665 return $this->lastErrno() == 8; // SQLITE_READONLY;
669 * @return string Wikitext of a link to the server software's web site
671 public function getSoftwareLink() {
672 return "[{{int:version-db-sqlite-url}} SQLite]";
676 * @return string Version information from the database
678 function getServerVersion() {
679 $ver = $this->mConn->getAttribute( PDO::ATTR_SERVER_VERSION );
681 return $ver;
685 * @return string User-friendly database information
687 public function getServerInfo() {
688 return wfMessage( self::getFulltextSearchModule()
689 ? 'sqlite-has-fts'
690 : 'sqlite-no-fts', $this->getServerVersion() )->text();
694 * Get information about a given field
695 * Returns false if the field does not exist.
697 * @param string $table
698 * @param string $field
699 * @return SQLiteField|bool False on failure
701 function fieldInfo( $table, $field ) {
702 $tableName = $this->tableName( $table );
703 $sql = 'PRAGMA table_info(' . $this->addQuotes( $tableName ) . ')';
704 $res = $this->query( $sql, __METHOD__ );
705 foreach ( $res as $row ) {
706 if ( $row->name == $field ) {
707 return new SQLiteField( $row, $tableName );
711 return false;
715 * @param string $s
716 * @return string
718 function strencode( $s ) {
719 return substr( $this->addQuotes( $s ), 1, -1 );
723 * @param string $b
724 * @return Blob
726 function encodeBlob( $b ) {
727 return new Blob( $b );
731 * @param Blob|string $b
732 * @return string
734 function decodeBlob( $b ) {
735 if ( $b instanceof Blob ) {
736 $b = $b->fetch();
739 return $b;
743 * @param Blob|string $s
744 * @return string
746 function addQuotes( $s ) {
747 if ( $s instanceof Blob ) {
748 return "x'" . bin2hex( $s->fetch() ) . "'";
749 } elseif ( is_bool( $s ) ) {
750 return (int)$s;
751 } elseif ( strpos( $s, "\0" ) !== false ) {
752 // SQLite doesn't support \0 in strings, so use the hex representation as a workaround.
753 // This is a known limitation of SQLite's mprintf function which PDO should work around,
754 // but doesn't. I have reported this to php.net as bug #63419:
755 // https://bugs.php.net/bug.php?id=63419
756 // There was already a similar report for SQLite3::escapeString, bug #62361:
757 // https://bugs.php.net/bug.php?id=62361
758 // There is an additional bug regarding sorting this data after insert
759 // on older versions of sqlite shipped with ubuntu 12.04
760 // https://bugzilla.wikimedia.org/show_bug.cgi?id=72367
761 wfDebugLog( __CLASS__, __FUNCTION__ . ': Quoting value containing null byte. For consistency all binary data should have been first processed with self::encodeBlob()' );
762 return "x'" . bin2hex( $s ) . "'";
763 } else {
764 return $this->mConn->quote( $s );
769 * @return string
771 function buildLike() {
772 $params = func_get_args();
773 if ( count( $params ) > 0 && is_array( $params[0] ) ) {
774 $params = $params[0];
777 return parent::buildLike( $params ) . "ESCAPE '\' ";
781 * @return string
783 public function getSearchEngine() {
784 return "SearchSqlite";
788 * No-op version of deadlockLoop
790 * @return mixed
792 public function deadlockLoop( /*...*/ ) {
793 $args = func_get_args();
794 $function = array_shift( $args );
796 return call_user_func_array( $function, $args );
800 * @param string $s
801 * @return string
803 protected function replaceVars( $s ) {
804 $s = parent::replaceVars( $s );
805 if ( preg_match( '/^\s*(CREATE|ALTER) TABLE/i', $s ) ) {
806 // CREATE TABLE hacks to allow schema file sharing with MySQL
808 // binary/varbinary column type -> blob
809 $s = preg_replace( '/\b(var)?binary(\(\d+\))/i', 'BLOB', $s );
810 // no such thing as unsigned
811 $s = preg_replace( '/\b(un)?signed\b/i', '', $s );
812 // INT -> INTEGER
813 $s = preg_replace( '/\b(tiny|small|medium|big|)int(\s*\(\s*\d+\s*\)|\b)/i', 'INTEGER', $s );
814 // floating point types -> REAL
815 $s = preg_replace(
816 '/\b(float|double(\s+precision)?)(\s*\(\s*\d+\s*(,\s*\d+\s*)?\)|\b)/i',
817 'REAL',
820 // varchar -> TEXT
821 $s = preg_replace( '/\b(var)?char\s*\(.*?\)/i', 'TEXT', $s );
822 // TEXT normalization
823 $s = preg_replace( '/\b(tiny|medium|long)text\b/i', 'TEXT', $s );
824 // BLOB normalization
825 $s = preg_replace( '/\b(tiny|small|medium|long|)blob\b/i', 'BLOB', $s );
826 // BOOL -> INTEGER
827 $s = preg_replace( '/\bbool(ean)?\b/i', 'INTEGER', $s );
828 // DATETIME -> TEXT
829 $s = preg_replace( '/\b(datetime|timestamp)\b/i', 'TEXT', $s );
830 // No ENUM type
831 $s = preg_replace( '/\benum\s*\([^)]*\)/i', 'TEXT', $s );
832 // binary collation type -> nothing
833 $s = preg_replace( '/\bbinary\b/i', '', $s );
834 // auto_increment -> autoincrement
835 $s = preg_replace( '/\bauto_increment\b/i', 'AUTOINCREMENT', $s );
836 // No explicit options
837 $s = preg_replace( '/\)[^);]*(;?)\s*$/', ')\1', $s );
838 // AUTOINCREMENT should immedidately follow PRIMARY KEY
839 $s = preg_replace( '/primary key (.*?) autoincrement/i', 'PRIMARY KEY AUTOINCREMENT $1', $s );
840 } elseif ( preg_match( '/^\s*CREATE (\s*(?:UNIQUE|FULLTEXT)\s+)?INDEX/i', $s ) ) {
841 // No truncated indexes
842 $s = preg_replace( '/\(\d+\)/', '', $s );
843 // No FULLTEXT
844 $s = preg_replace( '/\bfulltext\b/i', '', $s );
845 } elseif ( preg_match( '/^\s*DROP INDEX/i', $s ) ) {
846 // DROP INDEX is database-wide, not table-specific, so no ON <table> clause.
847 $s = preg_replace( '/\sON\s+[^\s]*/i', '', $s );
848 } elseif ( preg_match( '/^\s*INSERT IGNORE\b/i', $s ) ) {
849 // INSERT IGNORE --> INSERT OR IGNORE
850 $s = preg_replace( '/^\s*INSERT IGNORE\b/i', 'INSERT OR IGNORE', $s );
853 return $s;
856 public function lock( $lockName, $method, $timeout = 5 ) {
857 global $wgSQLiteDataDir;
859 if ( !is_dir( "$wgSQLiteDataDir/locks" ) ) { // create dir as needed
860 if ( !is_writable( $wgSQLiteDataDir ) || !mkdir( "$wgSQLiteDataDir/locks" ) ) {
861 throw new DBError( "Cannot create directory \"$wgSQLiteDataDir/locks\"." );
865 return $this->lockMgr->lock( array( $lockName ), LockManager::LOCK_EX, $timeout )->isOK();
868 public function unlock( $lockName, $method ) {
869 return $this->lockMgr->unlock( array( $lockName ), LockManager::LOCK_EX )->isOK();
873 * Build a concatenation list to feed into a SQL query
875 * @param string[] $stringList
876 * @return string
878 function buildConcat( $stringList ) {
879 return '(' . implode( ') || (', $stringList ) . ')';
882 public function buildGroupConcatField(
883 $delim, $table, $field, $conds = '', $join_conds = array()
885 $fld = "group_concat($field," . $this->addQuotes( $delim ) . ')';
887 return '(' . $this->selectSQLText( $table, $fld, $conds, null, array(), $join_conds ) . ')';
891 * @throws MWException
892 * @param string $oldName
893 * @param string $newName
894 * @param bool $temporary
895 * @param string $fname
896 * @return bool|ResultWrapper
898 function duplicateTableStructure( $oldName, $newName, $temporary = false, $fname = __METHOD__ ) {
899 $res = $this->query( "SELECT sql FROM sqlite_master WHERE tbl_name=" .
900 $this->addQuotes( $oldName ) . " AND type='table'", $fname );
901 $obj = $this->fetchObject( $res );
902 if ( !$obj ) {
903 throw new MWException( "Couldn't retrieve structure for table $oldName" );
905 $sql = $obj->sql;
906 $sql = preg_replace(
907 '/(?<=\W)"?' . preg_quote( trim( $this->addIdentifierQuotes( $oldName ), '"' ) ) . '"?(?=\W)/',
908 $this->addIdentifierQuotes( $newName ),
909 $sql,
912 if ( $temporary ) {
913 if ( preg_match( '/^\\s*CREATE\\s+VIRTUAL\\s+TABLE\b/i', $sql ) ) {
914 wfDebug( "Table $oldName is virtual, can't create a temporary duplicate.\n" );
915 } else {
916 $sql = str_replace( 'CREATE TABLE', 'CREATE TEMPORARY TABLE', $sql );
920 return $this->query( $sql, $fname );
924 * List all tables on the database
926 * @param string $prefix Only show tables with this prefix, e.g. mw_
927 * @param string $fname Calling function name
929 * @return array
931 function listTables( $prefix = null, $fname = __METHOD__ ) {
932 $result = $this->select(
933 'sqlite_master',
934 'name',
935 "type='table'"
938 $endArray = array();
940 foreach ( $result as $table ) {
941 $vars = get_object_vars( $table );
942 $table = array_pop( $vars );
944 if ( !$prefix || strpos( $table, $prefix ) === 0 ) {
945 if ( strpos( $table, 'sqlite_' ) !== 0 ) {
946 $endArray[] = $table;
951 return $endArray;
953 } // end DatabaseSqlite class
956 * This class allows simple acccess to a SQLite database independently from main database settings
957 * @ingroup Database
959 class DatabaseSqliteStandalone extends DatabaseSqlite {
960 public function __construct( $fileName, $flags = 0 ) {
961 $this->mFlags = $flags;
962 $this->tablePrefix( null );
963 $this->openFile( $fileName );
968 * @ingroup Database
970 class SQLiteField implements Field {
971 private $info, $tableName;
973 function __construct( $info, $tableName ) {
974 $this->info = $info;
975 $this->tableName = $tableName;
978 function name() {
979 return $this->info->name;
982 function tableName() {
983 return $this->tableName;
986 function defaultValue() {
987 if ( is_string( $this->info->dflt_value ) ) {
988 // Typically quoted
989 if ( preg_match( '/^\'(.*)\'$', $this->info->dflt_value ) ) {
990 return str_replace( "''", "'", $this->info->dflt_value );
994 return $this->info->dflt_value;
998 * @return bool
1000 function isNullable() {
1001 return !$this->info->notnull;
1004 function type() {
1005 return $this->info->type;
1007 } // end SQLiteField