Summary: Ctors | Inherited Methods
public
class
SQLiteException
extends SQLException
| java.lang.Object | |||||
| ↳ | java.lang.Throwable | ||||
| ↳ | java.lang.Exception | ||||
| ↳ | java.lang.RuntimeException | ||||
| ↳ | android.database.SQLException | ||||
| ↳ | android.database.sqlite.SQLiteException | ||||
Known direct subclasses
SQLiteAbortException, SQLiteAccessPermException, SQLiteBindOrColumnIndexOutOfRangeException, SQLiteBlobTooBigException, SQLiteCantOpenDatabaseException, SQLiteConstraintException, SQLiteDatabaseCorruptException, SQLiteDatabaseLockedException, SQLiteDatatypeMismatchException, SQLiteDiskIOException, SQLiteDoneException, SQLiteFullException, SQLiteMisuseException, SQLiteOutOfMemoryException, SQLiteReadOnlyDatabaseException, SQLiteTableLockedException
| SQLiteAbortException | An exception that indicates that the SQLite program was aborted. |
| SQLiteAccessPermException | This exception class is used when sqlite can't access the database file due to lack of permissions on the file. |
| SQLiteBindOrColumnIndexOutOfRangeException | Thrown if the the bind or column parameter index is out of range |
| SQLiteBlobTooBigException | |
| SQLiteCantOpenDatabaseException | |
| SQLiteConstraintException | An exception that indicates that an integrity constraint was violated. |
| SQLiteDatabaseCorruptException | An exception that indicates that the SQLite database file is corrupt. |
| SQLiteDatabaseLockedException | Thrown if the database engine was unable to acquire the database locks it needs to do its job. |
| SQLiteDatatypeMismatchException | |
| 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. |
| 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. |
| SQLiteOutOfMemoryException | |
| SQLiteReadOnlyDatabaseException | |
| SQLiteTableLockedException |
A SQLite exception that indicates there was an error with SQL parsing or execution.
Summary
Public constructors | |
|---|---|
SQLiteException()
|
|
SQLiteException(String error)
|
|
SQLiteException(String error, Throwable cause)
|
|
Inherited methods | |||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
From class
| |||||||||||||||||||||||||||
|
From class
| |||||||||||||||||||||||||||
Public constructors
SQLiteException
public SQLiteException ()