Seaquel
SQLite error code

SQLITE_IOERR

SQLITE_IOERR is SQLite result code 10.

Result code10
NameSQLITE_IOERR
Primary codeSQLITE_IOERR

What it means

The SQLITE_IOERR result code says that the operation could not finish because the operating system reported an I/O error.

A full disk drive will normally give an SQLITE_FULL error rather than an SQLITE_IOERR error.

There are many different extended result codes for I/O errors that identify the specific I/O operation that failed.

Source: SQLite Result and Error Codes