Home | History | Annotate | Download | only in sqlite

Lines Matching refs:databases

72     // Stores reference to all databases opened in the current process.
126 // True if the database has attached databases.
239 * Write-ahead logging cannot be used with read-only databases so the value of
1881 * If the database has any attached databases, then execution of queries in parallel is NOT
1882 * possible. Likewise, write-ahead logging is not supported for read-only databases
1883 * or memory databases. In such cases, {@link #enableWriteAheadLogging} returns false.
1925 // WAL doesn't make sense for readonly-databases.
1931 Log.i(TAG, "can't enable WAL for memory databases.");
1935 // make sure this database has NO attached databases because sqlite's write-ahead-logging
1936 // doesn't work for databases with attached databases
1940 + " has attached databases. can't enable WAL.");
2000 * Collect statistics about all open databases in the current process.
2020 ArrayList<SQLiteDatabase> databases = new ArrayList<SQLiteDatabase>();
2022 databases.addAll(sActiveDatabases.keySet());
2024 return databases;
2028 * Dump detailed information about all open databases in the current process.
2047 * Returns list of full pathnames of all attached databases including the main database
2061 // No attached databases.
2062 // There is a small window where attached databases exist but this flag is not
2066 // receivethe entire list of attached databases), then the caller should ensure
2069 // caller wants to collect stats on the database and all its attached databases.
2078 // has attached databases. query sqlite to get the list of attached databases.
2083 // sqlite returns a row for each database in the returned list of databases.
2102 * Runs 'pragma integrity_check' on the given database (and all the attached databases)
2103 * and returns true if the given database (and all its attached databases) pass integrity_check,
2111 * @return true if the given database (and all its attached databases) pass integrity_check,
2137 // integrity_checker failed on main or attached databases