A .NET wrapper to the SQLite database

SQLiteClient.ResultCode Enumeration

Represents possible error codes that may be given to the SQLiteException class as the errorcode.

[Visual Basic]
Public Enum SQLiteClient.ResultCode
[C#]
public enum SQLiteClient.ResultCode

Members

Member NameDescription
OK Successful result
ERROR SQL error or missing database
INTERNAL An internal logic error in SQLite
PERM Access permission denied
ABORT Callback routine requested an abort
BUSY The database file is locked
LOCKED A table in the database is locked
NOMEM A malloc() failed
READONLY Attempt to write a readonly database
INTERRUPT Operation terminated by sqlite_interrupt()
IOERR Some kind of disk I/O error occurred
CORRUPT The database disk image is malformed
NOTFOUND (Internal Only) Table or record not found
FULL Insertion failed because database is full
CANTOPEN Unable to open the database file
PROTOCOL Database lock protocol error
EMPTY (Internal Only) Database table is empty
SCHEMA The database schema changed
TOOBIG Too much data for one row of a table
CONSTRAINT Abort due to contraint violation
MISMATCH Data type mismatch
MISUSE Library used incorrectly
NOLFS Uses OS features not supported on host
AUTH Authorization denied

Requirements

Namespace: SQLite.NET

Assembly: SQLiteClient (in SQLiteClient.dll)

See Also

SQLite.NET Namespace