Home
last modified time | relevance | path

Searched defs:Btree (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c16472 typedef struct Btree Btree; typedef
70860 struct Btree { struct
70861 sqlite3 *db; /* The database connection holding this btree */
70862 BtShared *pBt; /* Sharable content of this btree */
70863 u8 inTrans; /* TRANS_NONE, TRANS_READ or TRANS_WRITE */
70864 u8 sharable; /* True if we can share pBt with another db */
70865 u8 locked; /* True if db currently has pBt locked */
70866 u8 hasIncrblobCur; /* True if there are one or more Incrblob cursors */
70867 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
70868 int nBackup; /* Number of backup operations reading this btree */
[all …]