#define sqlITE_OK @H_403_1@0/* Successful result */
/* beginning-of-error-codes */
#define sqlITE_ERROR @H_403_1@1/* sql error or missing database */
#define sqlITE_INTERNAL @H_403_1@2/* Internal logic error in sqlite */
#define sqlITE_PERM @H_403_1@3/* Access permission denied */
#define sqlITE_ABORT @H_403_1@4/* Callback routine requested an abort */
#define sqlITE_BUSY @H_403_1@5/* The database file is locked */
#define sqlITE_LOCKED @H_403_1@6/* A table in the database is locked */
#define sqlITE_NOMEM @H_403_1@7/* A malloc() Failed */
#define sqlITE_READONLY @H_403_1@8/* Attempt to write a readonly database */
#define sqlITE_INTERRUPT @H_403_1@9/* Operation terminated by sqlite3_interrupt()*/
#define sqlITE_IOERR @H_403_1@10/* Some kind of disk I/O error occurred */
#define sqlITE_CORRUPT @H_403_1@11/* The database disk image is malformed */
#define sqlITE_NOTFOUND @H_403_1@12/* NOT USED. Table or record not found */
#define sqlITE_FULL @H_403_1@13/* Insertion Failed because database is full */
#define sqlITE_CANTOPEN @H_403_1@14/* Unable to open the database file */
#define sqlITE_PROTOCOL @H_403_1@15/* NOT USED. Database lock protocol error */
#define sqlITE_EMPTY @H_403_1@16/* Database is empty */
#define sqlITE_SCHEMA @H_403_1@17/* The database schema changed */
#define sqlITE_TOOBIG @H_403_1@18/* String or BLOB exceeds size limit */
#define sqlITE_CONSTRAINT@H_403_1@19/* Abort due to constraint violation */
#define sqlITE_MISMATCH @H_403_1@20/* Data type mismatch */
#define sqlITE_MISUSE @H_403_1@21/* Library used incorrectly */
#define sqlITE_NOLFS @H_403_1@22/* Uses OS features not supported on host */
#define sqlITE_AUTH @H_403_1@23/* Authorization denied */
#define sqlITE_FORMAT @H_403_1@24/* Auxiliary database format error */
#define sqlITE_RANGE @H_403_1@25/* 2nd parameter to sqlite3_bind out of range */
#define sqlITE_NOTADB @H_403_1@26/* File opened that is not a database file */
#define sqlITE_ROW @H_403_1@100/* sqlite3_step() has another row ready */
#define sqlITE_DONE @H_403_1@101/* sqlite3_step() has finished executing */
原文链接:https://www.f2er.com/sqlite/202510.html