SQLite error code
SQLITE_DONE
SQLITE_DONE is SQLite result code 101.
| Result code | 101 |
|---|---|
| Name | SQLITE_DONE |
| Primary code | SQLITE_DONE |
What it means
The SQLITE_DONE result code indicates that an operation has completed. The SQLITE_DONE result code is most commonly seen as a return value from sqlite3_step() indicating that the SQL statement has run to completion. But SQLITE_DONE can also be returned by other multi-step interfaces such as sqlite3_backup_step().
Source: SQLite Result and Error Codes