1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Further improvements to the eOpenState bit values.

FossilOrigin-Name: d44f74f14a387960ce105913526b572f4a3d1935351c6aab10cee85946488a9e
This commit is contained in:
mistachkin
2021-08-09 18:13:38 +00:00
parent 8a72882425
commit bdf15bbd62
3 changed files with 14 additions and 14 deletions

View File

@@ -1765,12 +1765,12 @@ struct sqlite3 {
** The numbers are randomly selected such that a minimum of three bits must
** change to convert any number to another or to zero
*/
#define SQLITE_STATE_OPEN 0x3b /* Database is open */
#define SQLITE_STATE_CLOSED 0x63 /* Database is closed */
#define SQLITE_STATE_SICK 0x77 /* Error and awaiting close */
#define SQLITE_STATE_BUSY 0x7d /* Database currently in use */
#define SQLITE_STATE_ERROR 0xb5 /* An SQLITE_MISUSE error occurred */
#define SQLITE_STATE_ZOMBIE 0xe5 /* Close with last statement close */
#define SQLITE_STATE_OPEN 0x76 /* Database is open */
#define SQLITE_STATE_CLOSED 0xce /* Database is closed */
#define SQLITE_STATE_SICK 0xba /* Error and awaiting close */
#define SQLITE_STATE_BUSY 0x6d /* Database currently in use */
#define SQLITE_STATE_ERROR 0xd5 /* An SQLITE_MISUSE error occurred */
#define SQLITE_STATE_ZOMBIE 0xa7 /* Close with last statement close */
/*
** Each SQL function is defined by an instance of the following