sqlite library
SQLite interface.
See: https://developer.android.com/reference/android/database/sqlite/package-summary
Classes
- SQLite
- SQLite interface.
- SQLiteClosable
- An object created from a SQLiteDatabase that can be closed. [...]
- SQLiteCursor
- Exposes results from a query on a SQLiteDatabase. [...]
- SQLiteDatabase
- Exposes methods to manage a SQLite database. [...]
- SQLiteProgram
- A base class for compiled SQLite programs. [...]
- SQLiteQuery
- Represents a query that reads the resulting rows into a SQLiteQuery. [...]
- SQLiteStatement
- Represents a statement that can be executed against a database. [...]
Exceptions / Errors
- SQLException
- An exception that indicates there was an error with SQL parsing or execution. [...]
- SQLiteAbortException
- An exception that indicates that the SQLite program was aborted. [...]
- SQLiteConstraintException
- An exception that indicates that an integrity constraint was violated. [...]
- SQLiteDatabaseCorruptException
- An exception that indicates that the SQLite database file is corrupt. [...]
- SQLiteDatatypeMismatchException
- An exception that indicates a column datatype mismatch. [...]
- SQLiteDiskIOException
- An exception that indicates that an IO error occured while accessing the SQLite database file. [...]
- SQLiteDoneException
- An exception that indicates that the SQLite program is done. [...]
- SQLiteException
- A SQLite exception that indicates there was an error with SQL parsing or execution. [...]
- SQLiteFullException
- An exception that indicates that the SQLite database is full. [...]
- SQLiteMisuseException
- This error can occur if the application creates a SQLiteStatement object and allows multiple threads in the application use it at the same time. [...]