Searched defs:Column (Results 1 – 2 of 2) sorted by relevance
234 typedef struct Column Column; typedef445 struct Column { struct446 char *zName; /* Name of this column */447 char *zDflt; /* Default value of this column */448 char *zType; /* Data type for this column */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 */
977 UINT32 Column; member