39 return extension_loaded(
'pdo_sqlite' );
51 if ( !self::isPresent() ) {
52 throw new MWException(
"Can't check SQL syntax: SQLite not found" );
54 if ( !is_array( $files ) ) {
58 $allowedTypes = array_flip( [
65 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
67 foreach ( $files as $file ) {
68 $err = $db->sourceFile( $file );
74 $tables = $db->query(
"SELECT name FROM sqlite_master WHERE type='table'", __METHOD__ );
76 if ( strpos( $table->name,
'sqlite_' ) === 0 ) {
80 $columns = $db->query(
"PRAGMA table_info({$table->name})", __METHOD__ );
81 foreach ( $columns as $col ) {
82 if ( !isset( $allowedTypes[strtolower( $col->type )] ) ) {
85 return "Table {$table->name} has column {$col->name} with non-native type '{$col->type}'";
90 return $e->getMessage();
This class contains code common to different SQLite-related maintenance scripts.
static isPresent()
Checks whether PHP has SQLite support.
static checkSqlSyntax( $files)
Checks given files for correctness of SQL syntax.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
returning false will NOT prevent logging $e