SQLite error code

Source: Internet
Author: User
Tags sql error sqlite

In SQLite, the return values of the Sqlite3_exec () and Sqlite3_prepare () two core methods that execute the SQL statements are integer data, so when the program executes an error, we can determine the cause of the error based on the integer data returned. Here is the error code for SQLite:

#define SQLITE_OK 0/* success | Successful result */
/* ERROR code Start */
#define SQLITE_ERROR 1/* SQL error or lost database | SQL error or missing database */
#define SQLITE_INTERNAL 2/* SQLITE Internal Logic Error | Internal logic Error in SQLite */
#define SQLITE_PERM 3/* Deny access | Access Permission denied */
#define SQLITE_ABORT 4/* Callback function request Cancel Operation | Callback routine requested an abort * *
#define SQLITE_BUSY 5/* database file is locked | The database file is locked */
#define SQLITE_LOCKED 6/* A table in the database is locked | A table in the database is locked */
#define SQLITE_NOMEM 7/* a malloc () function call failed | A malloc () failed */
#define SQLITE_READONLY 8/* Try to write to a read-only database | Attempt to write a readonly database */
#define SQLITE_INTERRUPT 9/* Operation interrupted by Sqlite3_interupt () function | Operation terminated by Sqlite3_interrupt () */
#define SQLITE_IOERR 10/* Some disk I/O errors occur | Some kind of disk I/O error occurred */
#define SQLITE_CORRUPT 11/* Database disk image is incorrect | The database disk image is malformed */
Unknown operand in #define SQLITE_NOTFOUND/* Sqlite3_file_control () | Unknown opcode in Sqlite3_file_control () */
#define SQLITE_FULL 13/* Because the database is full causes insert failure | Insertion failed because database is full */
#define SQLITE_CANTOPEN 14/* Unable to open database file | Unable to open the database file */
#define SQLITE_PROTOCOL 15/* Database Lockout protocol error | Database Lock protocol Error */
#define SQLITE_EMPTY 16/* Database is empty | Database is empty */
#define SQLITE_SCHEMA 17/* Data structure changed | The database schema changed */
#define SQLITE_TOOBIG 18/* string or binary data exceeds size limit | String or BLOB exceeds size limit */
#define SQLITE_CONSTRAINT 19/* Canceled due to constraint violation | Abort due to constraint violation */
#define SQLITE_MISMATCH 20/* Data Type mismatch | Data Type Mismatch */
#define SQLITE_MISUSE 21/* Incorrect Library usage | Library used incorrectly */
#define SQLITE_NOLFS 22/* uses features not supported by the operating system | Uses OS features not supported on Host */
#define SQLITE_AUTH 23/* Authorization Failed | Authorization denied */
#define SQLITE_FORMAT 24/* Additional database format Error | Auxiliary database format Error */
#define SQLITE_RANGE 25/* The second parameter passed to Sqlite3_bind () Out of range | 2nd parameter to sqlite3_bind out of range */
#define SQLITE_NOTADB 26/* files that are open are not a database file | File opened a database file */
#define SQLITE_ROW/* SQLITE3_STEP () has produced a row result | Sqlite3_step () have another row ready */
#define SQLITE_DONE 101/* SQLITE3_STEP () Complete the execution | Sqlite3_step () has finished executing */

SQLite error code

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.