Package org.sqlite.core
Interface Codes
- All Known Implementing Classes:
CorePreparedStatement
,CoreResultSet
,CoreStatement
,DB
,JDBC3PreparedStatement
,JDBC3ResultSet
,JDBC3Statement
,JDBC4PreparedStatement
,JDBC4ResultSet
,JDBC4Statement
,NativeDB
public interface Codes
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Callback routine requested an abortstatic final int
Authorization deniedstatic final int
static final int
The database file is lockedstatic final int
Unable to open the database filestatic final int
Abort due to constraint violationstatic final int
The database disk image is malformedstatic final int
sqlite_step() has finished executingstatic final int
(Internal Only) Database table is emptystatic final int
SQL error or missing databasestatic final int
static final int
Insertion failed because database is fullstatic final int
static final int
An internal logic error in SQLitestatic final int
Operation terminated by sqlite_interrupt()static final int
Some kind of disk I/O error occurredstatic final int
A table in the database is lockedstatic final int
Data type mismatchstatic final int
Library used incorrectlystatic final int
Uses OS features not supported on hoststatic final int
A malloc() failedstatic final int
(Internal Only) Table or record not foundstatic final int
static final int
Successful resultstatic final int
Access permission deniedstatic final int
Database lock protocol errorstatic final int
Attempt to write a readonly databasestatic final int
sqlite_step() has another row readystatic final int
The database schema changedstatic final int
static final int
Too much data for one row of a table
-
Field Details
-
SQLITE_OK
static final int SQLITE_OKSuccessful result- See Also:
-
SQLITE_ERROR
static final int SQLITE_ERRORSQL error or missing database- See Also:
-
SQLITE_INTERNAL
static final int SQLITE_INTERNALAn internal logic error in SQLite- See Also:
-
SQLITE_PERM
static final int SQLITE_PERMAccess permission denied- See Also:
-
SQLITE_ABORT
static final int SQLITE_ABORTCallback routine requested an abort- See Also:
-
SQLITE_BUSY
static final int SQLITE_BUSYThe database file is locked- See Also:
-
SQLITE_LOCKED
static final int SQLITE_LOCKEDA table in the database is locked- See Also:
-
SQLITE_NOMEM
static final int SQLITE_NOMEMA malloc() failed- See Also:
-
SQLITE_READONLY
static final int SQLITE_READONLYAttempt to write a readonly database- See Also:
-
SQLITE_INTERRUPT
static final int SQLITE_INTERRUPTOperation terminated by sqlite_interrupt()- See Also:
-
SQLITE_IOERR
static final int SQLITE_IOERRSome kind of disk I/O error occurred- See Also:
-
SQLITE_CORRUPT
static final int SQLITE_CORRUPTThe database disk image is malformed- See Also:
-
SQLITE_NOTFOUND
static final int SQLITE_NOTFOUND(Internal Only) Table or record not found- See Also:
-
SQLITE_FULL
static final int SQLITE_FULLInsertion failed because database is full- See Also:
-
SQLITE_CANTOPEN
static final int SQLITE_CANTOPENUnable to open the database file- See Also:
-
SQLITE_PROTOCOL
static final int SQLITE_PROTOCOLDatabase lock protocol error- See Also:
-
SQLITE_EMPTY
static final int SQLITE_EMPTY(Internal Only) Database table is empty- See Also:
-
SQLITE_SCHEMA
static final int SQLITE_SCHEMAThe database schema changed- See Also:
-
SQLITE_TOOBIG
static final int SQLITE_TOOBIGToo much data for one row of a table- See Also:
-
SQLITE_CONSTRAINT
static final int SQLITE_CONSTRAINTAbort due to constraint violation- See Also:
-
SQLITE_MISMATCH
static final int SQLITE_MISMATCHData type mismatch- See Also:
-
SQLITE_MISUSE
static final int SQLITE_MISUSELibrary used incorrectly- See Also:
-
SQLITE_NOLFS
static final int SQLITE_NOLFSUses OS features not supported on host- See Also:
-
SQLITE_AUTH
static final int SQLITE_AUTHAuthorization denied- See Also:
-
SQLITE_ROW
static final int SQLITE_ROWsqlite_step() has another row ready- See Also:
-
SQLITE_DONE
static final int SQLITE_DONEsqlite_step() has finished executing- See Also:
-
SQLITE_INTEGER
static final int SQLITE_INTEGER- See Also:
-
SQLITE_FLOAT
static final int SQLITE_FLOAT- See Also:
-
SQLITE_TEXT
static final int SQLITE_TEXT- See Also:
-
SQLITE_BLOB
static final int SQLITE_BLOB- See Also:
-
SQLITE_NULL
static final int SQLITE_NULL- See Also:
-