SQLite error code
SQLITE_IOERR_NOMEM
SQLITE_IOERR_NOMEM is SQLite result code 3082, an extended code of SQLITE_IOERR.
| Result code | 3082 |
|---|---|
| Name | SQLITE_IOERR_NOMEM |
| Primary code | SQLITE_IOERR |
What it means
The SQLITE_IOERR_NOMEM error code is sometimes returned by the VFS layer to indicate that an operation could not be completed due to the inability to allocate sufficient memory. This error code is normally converted into SQLITE_NOMEM by the higher layers of SQLite before being returned to the application.
Source: SQLite Result and Error Codes