Lines Matching defs:u8

127 typedef UINT8_TYPE u8;             /* 1-byte unsigned integer */
133 ** Defer sourcing vdbe.h until after the "u8" typedef is defined.
271 u8 inTrans; /* 0: not writable. 1: Transaction. 2: Checkpoint */
352 u8 file_format; /* What file format version is this database? */
353 u8 safety_level; /* How aggressive at synching data to disk */
354 u8 want_to_close; /* Close after all VDBEs are deallocated */
355 u8 temp_store; /* 1=file, 2=memory, 0=compile-time default */
356 u8 onError; /* Default conflict algorithm */
374 u8 busy; /* TRUE if currently initializing */
436 u8 includeTypes; /* Add datatypes to args of xFunc and xStep */
449 u8 notNull; /* True if there is a NOT NULL constraint */
450 u8 isPrimKey; /* True if this column is part of the PRIMARY KEY */
451 u8 sortOrder; /* Some combination of SQLITE_SO_... values */
452 u8 dottedName; /* True if zName contains a "." character */
507 u8 readOnly; /* True if this table should not be written by the user */
508 u8 iDb; /* Index into sqlite.aDb[] of the backend for this table */
509 u8 isTransient; /* True if automatically deleted when VDBE finishes */
510 u8 hasPrimKey; /* True if there exists a primary key */
511 u8 keyConf; /* What to do in case of uniqueness conflict on iPKey */
551 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */
552 u8 updateConf; /* How to resolve conflicts that occur on UPDATE */
553 u8 deleteConf; /* How to resolve conflicts that occur on DELETE */
554 u8 insertConf; /* How to resolve conflicts that occur on INSERT */
628 u8 onError; /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */
629 u8 autoIndex; /* True if is automatically created (ex: by UNIQUE) */
630 u8 iDb; /* Index in sqlite.aDb[] of where this index is stored */
685 u8 op; /* Operation performed by this node */
686 u8 dataType; /* Either SQLITE_SO_TEXT or SQLITE_SO_NUM */
687 u8 iDb; /* Database referenced by this expression */
688 u8 flags; /* Various flags. See below */
730 u8 sortOrder; /* 1 for DESC or 0 for ASC */
731 u8 isAgg; /* True if this is an aggregate like count(*) */
732 u8 done; /* A flag to indicate when processing is finished */
855 u8 op; /* One of: TK_UNION TK_ALL TK_INTERSECT TK_EXCEPT */
856 u8 isDistinct; /* True if the DISTINCT keyword is present */
922 u8 colNamesSet; /* TRUE after OP_ColumnName has been issued to pVdbe */
923 u8 explain; /* True if the EXPLAIN flag is found on the query */
924 u8 nameClash; /* A permanent table name clashes with temp table name */
925 u8 useAgg; /* If true, extract field values from the aggregator
973 u8 iDb; /* Database containing this trigger */
974 u8 iTabDb; /* Database containing Trigger.table */
975 u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT */
976 u8 tr_tm; /* One of TK_BEFORE, TK_AFTER */