Package net.zetetic.database.sqlcipher
See: Description
-
Class Summary Class Description PagerStats Contains statistics about the active pagers in the current process. DbStats contains statistics about a database SQLiteDebug Provides debugging info about all SQLite databases running in the current process. SQLiteQuery Represents a query that reads the resulting rows into a SQLiteQuery. SQLiteStatementInfo Describes a SQLite statement. SQLiteDirectCursorDriver A cursor driver that uses the given query directly. SQLiteGlobal Provides access to SQLite functions that affect all database connection, such as memory management. SQLiteDatabase Exposes methods to manage a SQLite database. SQLiteDatabaseConfiguration Describes how to configure a database. SQLiteCustomFunction Describes a custom SQL function. SupportHelper SQLiteQueryBuilder This is a convience class that helps build SQL queries to be sent to SQLiteDatabase objects. SQLiteClosable An object created from a SQLiteDatabase that can be closed. SQLiteCursor A Cursor implementation that exposes results from a query on a SQLiteDatabase. SQLiteSession Provides a single client the ability to use a database. SupportOpenHelperFactory DatabaseObjectNotClosedException An exception that indicates that garbage-collector is finalizing a database object that is not explicitly closed SQLiteStatement Represents a statement that can be executed against a database. CloseGuard CloseGuard is a mechanism for flagging implicit finalizer cleanup of resources that should have been cleaned up by explicit close methods (aka "explicit termination methods" in Effective Java). SQLiteProgram A base class for compiled SQLite programs. SQLiteConnectionPool Maintains a pool of active SQLite database connections. SQLiteConnection Represents a SQLite database connection. SQLiteOpenHelper A helper class to manage database creation and version management. -
Interface Summary Interface Description CursorFactory Used to allow returning sub-classes of Cursor when calling query. CustomFunction A callback interface for a custom sqlite3 function.This can be used to create a function that can be called fromsqlite3 database triggers. SQLiteDatabaseHook SQLiteTransactionListener A listener for transaction events. SQLiteCursorDriver A driver for SQLiteCursors that is used to create them and gets notified by the cursors it creates on significant events in their lifetimes. Reporter Interface to allow customization of reporting behavior.