SQLITE_READONLY_RECOVERY constant

int const SQLITE_READONLY_RECOVERY

The SQLITE_READONLY_RECOVERY error code is an extended error code for SQLITE_READONLY. The SQLITE_READONLY_RECOVERY error code indicates that a WAL mode database cannot be opened because the database file needs to be recovered and recovery requires write access but only read access is available.

Implementation

static const int SQLITE_READONLY_RECOVERY = 264;