Error code

SQLite SQLITE_FULL

SQLITESQLITE_FULL
Database Error Code· An error code returned by a database server such as PostgreSQL or MySQL.

What it means

the database or disk is full — no space for the write.

How to fix it

  1. Free disk space on the partition hosting the database file.
  2. Increase the page limit with PRAGMA max_page_count if an artificial limit is set.
  3. Run VACUUM to reclaim space from deleted rows and shrink the file.

Not affiliated with SQLite. Answer summarized from the manufacturer's manual linked above; consult that source for the authoritative procedure.