#define SQLITE_OK0 /*Success | Successful result*//*error code start*/#define SQLITE_ERROR1 /*SQL Error or lost database | SQL error or missing database*/#define Sqlite_internal2 /*SQLite Internal Logic Error | Internal logic Error in SQLite*/#define SQLITE_PERM3 /*Access Denied | Access Permission denied*/#define Sqlite_abort4 /*callback function request Cancel Operation | Callback routine requested an abort*/#define SQLITE_BUSY5 /*database file is locked | The database file is locked*/#define Sqlite_locked6 /*a table in the database is locked | A table in the database is locked*/#define SQLITE_NOMEM7 /*a malloc () function call failed | A malloc () failed*/#define SQLITE_READONLY8 /*attempt to write to a read-only database | Attempt to write a readonly database*/#define SQLITE_INTERRUPT9 /*operation interrupted by Sqlite3_interupt () function | Operation terminated by Sqlite3_interrupt ()*/#define SQLITE_IOERRTen /*some disk I/O errors occur | Some kind of disk I/O error occurred*/#define SQLITE_CORRUPT One /*database disk image is incorrect | The database disk image is malformed*/#define Sqlite_notfound A /*unknown operand in Sqlite3_file_control () | Unknown opcode in Sqlite3_file_control ()*/#define SQLITE_FULL - /*insert failed because the database is full | Insertion failed because database is full*/#define Sqlite_cantopen - /*Unable to open database file | Unable to open the database file*/#define SQLITE_PROTOCOL the /*Database Lock Protocol error | Database Lock protocol error*/#define SQLITE_EMPTY - /*the database is empty | Database is empty*/#define SQLITE_SCHEMA - /*Data Structure Changes | The database schema changed*/#define SQLITE_TOOBIG - /*string or binary data exceeds size limit | String or BLOB exceeds size limit*/#define Sqlite_constraint + /*cancellation due to constraint violation | Abort due to constraint violation*/#define Sqlite_mismatch - /*Data Type mismatch | Data Type mismatch*/#define Sqlite_misuse + /*Incorrect Library usage | Library used incorrectly*/#define SQLITE_NOLFS A /*using features not supported by the operating system | Uses OS features not supported on host*/#define Sqlite_auth at /*Authorization Failed | Authorization denied*/#define Sqlite_format - /*additional database Format Error | Auxiliary database format Error*/#define Sqlite_range - /*The second parameter passed to Sqlite3_bind () is out of range | 2nd parameter to sqlite3_bind out of*/#define SQLITE_NOTADB - /*the file being opened is not a database file | File opened a database file*/#define Sqlite_row - /*Sqlite3_step () has produced a row result | Sqlite3_step () has another row ready*/#define Sqlite_done101 /*sqlite3_step () Complete execution | Sqlite3_step () has finished executing*//*End of error code*/
Note: Transfer from Internet
Sqlite3 error code collation