Seaquel
SQLite error code

SQLITE_FULL

SQLITE_FULL is SQLite result code 13.

Result code13
NameSQLITE_FULL
Primary codeSQLITE_FULL

What it means

The SQLITE_FULL result code indicates that a write could not complete because the disk is full. Note that this error can occur when trying to write information into the main database file, or it can also occur when writing into temporary disk files.

Sometimes applications encounter this error even though there is an abundance of primary disk space because the error occurs when writing into temporary disk files on a system where temporary files are stored on a separate partition with much less space than the primary disk.

Source: SQLite Result and Error Codes