SQLite error code
SQLITE_NOMEM
SQLITE_NOMEM is SQLite result code 7.
| Result code | 7 |
|---|---|
| Name | SQLITE_NOMEM |
| Primary code | SQLITE_NOMEM |
What it means
The SQLITE_NOMEM result code indicates that SQLite was unable to allocate all the memory it needed to complete the operation. In other words, an internal call to sqlite3_malloc() or sqlite3_realloc() has failed in a case where the memory being allocated was required in order to continue the operation.
Source: SQLite Result and Error Codes