SQLITE_BUSY_RECOVERY constant
int
const SQLITE_BUSY_RECOVERY
The SQLITE_BUSY_RECOVERY error code is an extended error code for SQLITE_BUSY that indicates that an operation could not continue because another process is busy recovering a WAL mode database file following a crash. The SQLITE_BUSY_RECOVERY error code only occurs on WAL mode databases.
Implementation
static const int SQLITE_BUSY_RECOVERY = 261;