HomeSort by relevance Sort by last modified time
    Searched defs:sqlite (Results 26 - 50 of 95) sorted by null

12 3 4

  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteMisuseExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteMisuseException;
SQLiteQueryTest.java 17 package android.database.sqlite.cts;
SQLiteClosableTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteClosable;
SQLiteFtsTest.java 17 package android.database.sqlite.cts;
23 import android.database.sqlite.SQLiteDatabase;
29 * Tests to verify FTS3/4 SQLite support.
  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatementInfo.java 17 package android.database.sqlite;
20 * Describes a SQLite statement.
SQLiteTransactionListener.java 17 package android.database.sqlite;
SQLiteCursorDriver.java 17 package android.database.sqlite;
20 import android.database.sqlite.SQLiteDatabase.CursorFactory;
SQLiteCustomFunction.java 17 package android.database.sqlite;
SQLiteClosable.java 17 package android.database.sqlite;
SqliteWrapper.java 18 package android.database.sqlite;
24 import android.database.sqlite.SQLiteException;
SQLiteDatabaseConfiguration.java 17 package android.database.sqlite;
SQLiteDirectCursorDriver.java 17 package android.database.sqlite;
20 import android.database.sqlite.SQLiteDatabase.CursorFactory;
SQLiteGlobal.java 17 package android.database.sqlite;
24 * Provides access to SQLite functions that affect all database connection,
28 * using sqlite3_config() then calls sqlite3_initialize() to ensure that the SQLite
32 * Verbose SQLite logging is enabled if the "log.tag.SQLiteLog" property is set to "V".
49 * Attempts to release memory by pruning the SQLite page cache and other
66 return SystemProperties.getInt("debug.sqlite.pagesize", sDefaultPageSize);
74 return SystemProperties.get("debug.sqlite.journalmode",
83 return SystemProperties.getInt("debug.sqlite.journalsizelimit",
92 return SystemProperties.get("debug.sqlite.syncmode",
101 return SystemProperties.get("debug.sqlite.wal.syncmode"
    [all...]
SQLiteQuery.java 17 package android.database.sqlite;
SQLiteStatement.java 17 package android.database.sqlite;
102 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows
123 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows
144 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows
SQLiteDebug.java 17 package android.database.sqlite;
27 * Provides debugging info about all SQLite databases running in the current process.
92 /** the current amount of memory checked out by sqlite using sqlite3_malloc().
93 * documented at http://www.sqlite.org/c3ref/c_status_malloc_size.html
102 * documented at http://www.sqlite.org/c3ref/c_status_malloc_size.html
107 * documented at http://www.sqlite.org/c3ref/c_status_malloc_size.html
130 /** documented here http://www.sqlite.org/c3ref/c_dbstatus_lookaside_used.html */
SQLiteProgram.java 17 package android.database.sqlite;
25 * A base class for compiled SQLite programs.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dump.py 4 import sqlite3 as sqlite namespace
8 self.cx = sqlite.connect(":memory:")
py25tests.py 26 import sqlite3 as sqlite namespace
30 class MyConnection(sqlite.Connection):
34 sqlite.Connection.rollback(self)
39 self.con = sqlite.connect(":memory:", factory=MyConnection)
67 except sqlite.IntegrityError:
hooks.py 2 # pysqlite2/test/hooks.py: tests for various SQLite-specific hooks
25 import sqlite3 as sqlite namespace
35 con = sqlite.connect(":memory:")
43 con = sqlite.connect(":memory:")
47 except sqlite.ProgrammingError, e:
51 if sqlite.version_info < (3, 2, 1): # old SQLite versions crash on this test
57 con = sqlite.connect(":memory:")
76 except sqlite.OperationalError, e:
83 con = sqlite.connect(":memory:"
    [all...]
transactions.py 26 import sqlite3 as sqlite namespace
38 self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
41 self.con2 = sqlite.connect(get_db_path(), timeout=0.1)
116 if sqlite.sqlite_version_info < (3, 2, 2):
117 # This will fail (hang) on earlier versions of sqlite.
125 except sqlite.OperationalError:
135 if sqlite.sqlite_version_info < (3, 2, 2):
136 # This will fail (hang) on earlier versions of sqlite.
144 except sqlite.OperationalError:
156 con = sqlite.connect(":memory:"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dump.py 4 import sqlite3 as sqlite namespace
8 self.cx = sqlite.connect(":memory:")
py25tests.py 26 import sqlite3 as sqlite namespace
30 class MyConnection(sqlite.Connection):
34 sqlite.Connection.rollback(self)
39 self.con = sqlite.connect(":memory:", factory=MyConnection)
67 except sqlite.IntegrityError:
hooks.py 2 # pysqlite2/test/hooks.py: tests for various SQLite-specific hooks
25 import sqlite3 as sqlite namespace
35 con = sqlite.connect(":memory:")
43 con = sqlite.connect(":memory:")
47 except sqlite.ProgrammingError, e:
51 if sqlite.version_info < (3, 2, 1): # old SQLite versions crash on this test
57 con = sqlite.connect(":memory:")
76 except sqlite.OperationalError, e:
83 con = sqlite.connect(":memory:"
    [all...]
transactions.py 26 import sqlite3 as sqlite namespace
38 self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
41 self.con2 = sqlite.connect(get_db_path(), timeout=0.1)
116 if sqlite.sqlite_version_info < (3, 2, 2):
117 # This will fail (hang) on earlier versions of sqlite.
125 except sqlite.OperationalError:
135 if sqlite.sqlite_version_info < (3, 2, 2):
136 # This will fail (hang) on earlier versions of sqlite.
144 except sqlite.OperationalError:
156 con = sqlite.connect(":memory:"
    [all...]

Completed in 623 milliseconds

12 3 4