Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c23658 typedef struct VdbeCursor VdbeCursor; typedef
23659 struct VdbeCursor { struct
23660 u8 eCurType; /* One of the CURTYPE_* values above */
23661 i8 iDb; /* Index of cursor database in db->aDb[] */
23662 u8 nullRow; /* True if pointing to a row with no data */
23663 u8 deferredMoveto; /* A call to sqlite3BtreeMoveto() is needed */
23664 u8 isTable; /* True for rowid tables. False for indexes */
23666 u8 seekOp; /* Most recent seek operation on this cursor */
23667 u8 wrFlag; /* The wrFlag argument to sqlite3BtreeCursor() */
23692 /* When a new VdbeCursor is allocated, only the fields above are zeroed. argument
[all …]