SQLITE_CORRUPT_SEQUENCE constant

int const SQLITE_CORRUPT_SEQUENCE

The SQLITE_CORRUPT_SEQUENCE result code means that the schema of the sqlite_sequence table is corrupt. The sqlite_sequence table is used to help implement the AUTOINCREMENT feature. The sqlite_sequence table should have the following format:

CREATE TABLE sqlite_sequencestatic const int name,seq);

If SQLite discovers that the sqlite_sequence table has any other format, it returns the SQLITE_CORRUPT_SEQUENCE error.

Implementation

static const int SQLITE_CORRUPT_SEQUENCE = 523;