SQLite error code
SQLITE_ABORT
SQLITE_ABORT is SQLite result code 4.
| Result code | 4 |
|---|---|
| Name | SQLITE_ABORT |
| Primary code | SQLITE_ABORT |
What it means
The SQLITE_ABORT result code indicates that an operation was aborted prior to completion, usually by application request. See also: SQLITE_INTERRUPT.
If the callback function to sqlite3_exec() returns non-zero, then sqlite3_exec() will return SQLITE_ABORT.
If a ROLLBACK operation occurs on the same database connection as a pending read or write, then the pending read or write may fail with an SQLITE_ABORT or SQLITE_ABORT_ROLLBACK error.
In addition to being a result code, the SQLITE_ABORT value is also used as a conflict resolution mode returned from the sqlite3_vtab_on_conflict() interface.
Source: SQLite Result and Error Codes