Seaquel
SQLite error code

SQLITE_IOERR_WRITE

SQLITE_IOERR_WRITE is SQLite result code 778, an extended code of SQLITE_IOERR.

Result code778
NameSQLITE_IOERR_WRITE
Primary codeSQLITE_IOERR

What it means

The SQLITE_IOERR_WRITE error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to write into a file on disk. This error might result from a hardware malfunction or because a filesystem became unmounted while the file was open. This error should not occur if the filesystem is full as there is a separate error code (SQLITE_FULL) for that purpose.

Source: SQLite Result and Error Codes