SQLITE_IOERR_NOMEM constant

int const SQLITE_IOERR_NOMEM

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.

Implementation

static const int SQLITE_IOERR_NOMEM = 3082;