Seaquel
SQLite error code

SQLITE_NOTFOUND

SQLITE_NOTFOUND is SQLite result code 12.

Result code12
NameSQLITE_NOTFOUND
Primary codeSQLITE_NOTFOUND

What it means

The SQLITE_NOTFOUND result code is exposed in three ways:

SQLITE_NOTFOUND can be returned by the sqlite3_file_control() interface to indicate that the file control opcode passed as the third argument was not recognized by the underlying VFS.

SQLITE_NOTFOUND can also be returned by the xSetSystemCall() method of an sqlite3_vfs object.

SQLITE_NOTFOUND can be returned by sqlite3_vtab_rhs_value() to indicate that the right-hand operand of a constraint is not available to the xBestIndex method that made the call.

The SQLITE_NOTFOUND result code is also used internally by the SQLite implementation, but those internal uses are not exposed to the application.

Source: SQLite Result and Error Codes