Updated: 2022/Sep/29

Please read Privacy Policy. It's for your privacy.


SQLITE_OK(3)               Library Functions Manual               SQLITE_OK(3)

NAME
     SQLITE_OK, SQLITE_ERROR, SQLITE_INTERNAL, SQLITE_PERM, SQLITE_ABORT,
     SQLITE_BUSY, SQLITE_LOCKED, SQLITE_NOMEM, SQLITE_READONLY,
     SQLITE_INTERRUPT, SQLITE_IOERR, SQLITE_CORRUPT, SQLITE_NOTFOUND,
     SQLITE_FULL, SQLITE_CANTOPEN, SQLITE_PROTOCOL, SQLITE_EMPTY,
     SQLITE_SCHEMA, SQLITE_TOOBIG, SQLITE_CONSTRAINT, SQLITE_MISMATCH,
     SQLITE_MISUSE, SQLITE_NOLFS, SQLITE_AUTH, SQLITE_FORMAT, SQLITE_RANGE,
     SQLITE_NOTADB, SQLITE_NOTICE, SQLITE_WARNING, SQLITE_ROW, SQLITE_DONE -
     result codes

SYNOPSIS
     #include <sqlite3.h>

     #define SQLITE_OK
     #define SQLITE_ERROR
     #define SQLITE_INTERNAL
     #define SQLITE_PERM
     #define SQLITE_ABORT
     #define SQLITE_BUSY
     #define SQLITE_LOCKED
     #define SQLITE_NOMEM
     #define SQLITE_READONLY
     #define SQLITE_INTERRUPT
     #define SQLITE_IOERR
     #define SQLITE_CORRUPT
     #define SQLITE_NOTFOUND
     #define SQLITE_FULL
     #define SQLITE_CANTOPEN
     #define SQLITE_PROTOCOL
     #define SQLITE_EMPTY
     #define SQLITE_SCHEMA
     #define SQLITE_TOOBIG
     #define SQLITE_CONSTRAINT
     #define SQLITE_MISMATCH
     #define SQLITE_MISUSE
     #define SQLITE_NOLFS
     #define SQLITE_AUTH
     #define SQLITE_FORMAT
     #define SQLITE_RANGE
     #define SQLITE_NOTADB
     #define SQLITE_NOTICE
     #define SQLITE_WARNING
     #define SQLITE_ROW
     #define SQLITE_DONE

DESCRIPTION
     Many SQLite functions return an integer result code from the set shown
     here in order to indicate success or failure.

     New error codes may be added in future versions of SQLite.

IMPLEMENTATION NOTES
     These declarations were extracted from the interface documentation at
     line 434.

     #define SQLITE_OK           0   /* Successful result */
     /* beginning-of-error-codes */
     #define SQLITE_ERROR        1   /* Generic error */
     #define SQLITE_INTERNAL     2   /* Internal logic error in SQLite */
     #define SQLITE_PERM         3   /* Access permission denied */
     #define SQLITE_ABORT        4   /* Callback routine requested an abort */
     #define SQLITE_BUSY         5   /* The database file is locked */
     #define SQLITE_LOCKED       6   /* A table in the database is locked */
     #define SQLITE_NOMEM        7   /* A malloc() failed */
     #define SQLITE_READONLY     8   /* Attempt to write a readonly database */
     #define SQLITE_INTERRUPT    9   /* Operation terminated by sqlite3_interrupt()*/
     #define SQLITE_IOERR       10   /* Some kind of disk I/O error occurred */
     #define SQLITE_CORRUPT     11   /* The database disk image is malformed */
     #define SQLITE_NOTFOUND    12   /* Unknown opcode in sqlite3_file_control() */
     #define SQLITE_FULL        13   /* Insertion failed because database is full */
     #define SQLITE_CANTOPEN    14   /* Unable to open the database file */
     #define SQLITE_PROTOCOL    15   /* Database lock protocol error */
     #define SQLITE_EMPTY       16   /* Internal use only */
     #define SQLITE_SCHEMA      17   /* The database schema changed */
     #define SQLITE_TOOBIG      18   /* String or BLOB exceeds size limit */
     #define SQLITE_CONSTRAINT  19   /* Abort due to constraint violation */
     #define SQLITE_MISMATCH    20   /* Data type mismatch */
     #define SQLITE_MISUSE      21   /* Library used incorrectly */
     #define SQLITE_NOLFS       22   /* Uses OS features not supported on host */
     #define SQLITE_AUTH        23   /* Authorization denied */
     #define SQLITE_FORMAT      24   /* Not used */
     #define SQLITE_RANGE       25   /* 2nd parameter to sqlite3_bind out of range */
     #define SQLITE_NOTADB      26   /* File opened that is not a database file */
     #define SQLITE_NOTICE      27   /* Notifications from sqlite3_log() */
     #define SQLITE_WARNING     28   /* Warnings from sqlite3_log() */
     #define SQLITE_ROW         100  /* sqlite3_step() has another row ready */
     #define SQLITE_DONE        101  /* sqlite3_step() has finished executing */
     /* end-of-error-codes */

SEE ALSO
     SQLITE_ERROR_MISSING_COLLSEQ(3)

NetBSD 10.99                    August 24, 2023                   NetBSD 10.99