Seaquel
SQLite error code

SQLITE_DONE

SQLITE_DONE is SQLite result code 101.

Result code101
NameSQLITE_DONE
Primary codeSQLITE_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