SQLITE_CORRUPT_INDEX constant
int
const SQLITE_CORRUPT_INDEX
The SQLITE_CORRUPT_INDEX result code means that SQLite detected an entry is or was missing from an index. This is a special case of the SQLITE_CORRUPT error code that suggests that the problem might be resolved by running the REINDEX command, assuming no other problems exist elsewhere in the database file.
Implementation
static const int SQLITE_CORRUPT_INDEX = 779;