Lines Matching refs:Table
1215 typedef struct Table Table; typedef
1350 Table *pSeqTab; /* The sqlite_sequence table used by AUTOINCREMENT */
2068 Table *pEpoTab; /* Eponymous table for this module */
2273 struct Table { struct
2423 Table *pFrom; /* Table containing the REFERENCES clause (aka: Child) */
2611 Table *pTable; /* The SQL table being indexed */
2725 Table *pTab; /* Source table */
2879 Table *pTab; /* TK_COLUMN: Table containing column. Can be NULL
3117 Table *pTab; /* An SQL table corresponding to zName */
3529 Table *pTab; /* Table this info block refers to */
3673 Table *pTriggerTab; /* Table triggers are being coded for */
3721 Table *pNewTable; /* A table being constructed by CREATE TABLE */
3729 Table **apVtabLock; /* Pointer to virtual tables needing locking */
4100 struct Table *pTab; /* Table of generated column */
4612 void sqlite3ColumnSetExpr(Parse*,Table*,Column*,Expr*);
4613 Expr *sqlite3ColumnExpr(Table*,Column*);
4616 void sqlite3DeleteColumnNames(sqlite3*,Table*);
4619 void sqlite3SelectAddColumnTypeAndCollation(Parse*,Table*,Select*,char);
4620 Table *sqlite3ResultSetOfSelect(Parse*,Select*,char);
4622 Index *sqlite3PrimaryKeyIndex(Table*);
4628 i16 sqlite3TableColumnToStorage(Table*, i16);
4629 i16 sqlite3StorageColumnToTable(Table*, i16);
4633 void sqlite3ColumnPropertiesFromName(Table*, Column*);
4678 int sqlite3ViewGetColumnNames(Parse*,Table*);
4687 void sqlite3CodeDropTable(Parse*, Table*, int, int);
4688 void sqlite3DeleteTable(sqlite3*, Table*);
4699 void sqlite3ComputeGeneratedColumns(Parse*, int, Table*);
4725 Table *sqlite3SrcListLookup(Parse*, SrcList*);
4726 int sqlite3IsReadOnly(Parse*, Table*, int);
4727 void sqlite3OpenTable(Parse*, int iCur, int iDb, Table*, int);
4752 int sqlite3ExprCodeGetColumn(Parse*, Table*, int, int, int, u8);
4753 void sqlite3ExprCodeGetColumnOfTable(Vdbe*, Table*, int, int, int);
4757 void sqlite3ExprCodeGeneratedColumn(Parse*, Table*, Column*, int);
4772 Table *sqlite3FindTable(sqlite3*,const char*, const char*);
4775 Table *sqlite3LocateTable(Parse*,u32 flags,const char*, const char*);
4777 Table *sqlite3LocateTableItem(Parse*,u32 flags,SrcItem *);
4824 Parse*,Table*,Trigger*,int,int,int,i16,u8,u8,u8,int);
4825 void sqlite3GenerateRowIndexDelete(Parse*, Table*, int, int, int*, int);
4829 void sqlite3GenerateConstraintChecks(Parse*,Table*,int*,int,int,int,int,
4832 void sqlite3SetMakeRecordP5(Vdbe*,Table*);
4836 void sqlite3CompleteInsertion(Parse*,Table*,int,int,int,int*,int,int,int);
4837 int sqlite3OpenTableAndIndices(Parse*, Table*, int, u8, int, u8*, int*, int*);
4843 void sqlite3RowidConstraint(Parse*, int, Table*);
4866 void sqlite3MaterializeView(Parse*, Table*, Expr*, ExprList*,Expr*,int);
4875 Trigger *sqlite3TriggersExist(Parse *, Table*, int, ExprList*, int *pMask);
4876 Trigger *sqlite3TriggerList(Parse *, Table *);
4877 void sqlite3CodeRowTrigger(Parse*, Trigger *, int, ExprList*, int, Table *,
4879 void sqlite3CodeRowTriggerDirect(Parse *, Trigger *, Table *, int, int, int);
4880 void sqliteViewTriggers(Parse*, Table*, Expr*, int, ExprList*);
4893 u32 sqlite3TriggerColmask(Parse*,Trigger*,ExprList*,int,int,Table*,int);
4912 int sqlite3ColumnIndex(Table *pTab, const char *zCol);
4984 char *sqlite3TableAffinityStr(sqlite3*,const Table*);
4985 void sqlite3TableAffinity(Vdbe*, Table*, int);
4988 char sqlite3TableColumnAffinity(const Table*,int);
5095 int sqlite3ResolveSelfReference(Parse*,Table*,int,Expr*,ExprList*);
5097 void sqlite3ColumnDefault(Vdbe *, Table *, int, int);
5215 void sqlite3VtabClear(sqlite3 *db, Table*);
5216 void sqlite3VtabDisconnect(sqlite3 *db, Table *p);
5226 VTable *sqlite3GetVTable(sqlite3*, Table*);
5239 int sqlite3IsShadowTableOf(sqlite3*,Table*,const char*);
5240 void sqlite3MarkAllShadowTablesOf(sqlite3*, Table*);
5248 void sqlite3VtabMakeWritable(Parse*,Table*);
5254 int sqlite3VtabCallConnect(Parse*, Table*);
5300 void sqlite3UpsertDoUpdate(Parse*,Upsert*,Table*,Index*,int);
5320 void sqlite3FkCheck(Parse*, Table*, int, int, int*, int);
5321 void sqlite3FkDropTable(Parse*, SrcList *, Table*);
5322 void sqlite3FkActions(Parse*, Table*, ExprList*, int, int*, int);
5323 int sqlite3FkRequired(Parse*, Table*, int*, int);
5324 u32 sqlite3FkOldmask(Parse*, Table*);
5325 FKey *sqlite3FkReferences(Table *);
5337 void sqlite3FkDelete(sqlite3 *, Table*);
5338 int sqlite3FkLocateIndex(Parse*,Table*,FKey*,Index**,int**);