| Interface | Description |
|---|---|
| SQLiteConnectionListener |
Created by pasin on 11/17/15.
|
| 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.
|
| SQLiteDatabase.CursorFactory |
Used to allow returning sub-classes of
Cursor when calling query. |
| SQLiteDatabase.CustomFunction |
A callback interface for a custom sqlite3 function.
|
| SQLiteTransactionListener |
A listener for transaction events.
|
| Class | Description |
|---|---|
| SQLiteClosable |
An object created from a SQLiteDatabase that can be closed.
|
| SQLiteConnection |
Represents a SQLite database connection.
|
| SQLiteConnection.PreparedStatement |
Holder type for a prepared statement.
|
| SQLiteConnectionPool |
Maintains a pool of active SQLite database connections.
|
| SQLiteDatabase |
Exposes methods to manage a SQLite database.
|
| SQLiteDatabaseConfiguration |
Describes how to configure a database.
|
| SQLiteDebug | |
| SQLiteDebug.DbStats |
contains statistics about a database
|
| 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.
|
| SQLiteProgram |
A base class for compiled SQLite programs.
|
| SQLiteQuery |
Represents a query that reads the resulting rows into a
SQLiteQuery. |
| SQLiteQueryBuilder |
This is a convience class that helps build SQL queries to be sent to
SQLiteDatabase objects. |
| SQLiteQueryCursor | |
| SQLiteSession |
Provides a single client the ability to use a database.
|
| SQLiteStatement |
Represents a statement that can be executed against a database.
|
| SQLiteStatementInfo |
Describes a SQLite statement.
|