Home | History | Annotate | Download | only in dist

Lines Matching defs:FKey

8791 typedef struct FKey FKey;
10943 FKey *pFKey; /* Linked list of all foreign keys in this table */
11027 struct FKey {
11029 FKey *pNextFrom; /* Next FKey
11031 FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */
11032 FKey *pPrevTo; /* Previous with the same zTo */
13019 /* Declarations for functions in fkey.c. All of these are replaced by
13032 SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *);
13042 SQLITE_PRIVATE int sqlite3FkLocateIndex(Parse*,Table*,FKey*,Index**,int**);
74778 FKey *pFKey;
82884 FKey *p;
83171 FKey *p;
88616 ** An FKey structure is created and added to the table currently
88631 FKey *pFKey = 0;
88632 FKey *pNextTo;
88711 pNextTo = (FKey *)sqlite3HashInsert(&p->pSchema->fkeyHash,
88746 FKey *pFKey;
93441 /************** Begin file fkey.c ********************************************/
93563 ** sqlite3FkDelete() - Delete an FKey structure.
93626 FKey *pFKey, /* Foreign key to find index for */
93756 ** (fkey.c) as "I.1" and "D.1".
93763 FKey *pFKey, /* Foreign key constraint */
93971 ** (fkey.c) as "I.2" and "D.2".
93978 FKey *pFKey, /* The foreign key linking pSrc to pTab */
94088 ** This function returns a linked list of FKey objects (connected by
94089 ** FKey.pNextTo) holding all children of table pTab. For example,
94096 ** to the FKey structure representing the foreign key constraint on table
94101 SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *pTab){
94103 return (FKey *)sqlite3HashFind(&pTab->pSchema->fkeyHash, pTab->zName, nName);
94155 FKey *p;
94192 ** The second argument points to an FKey object representing a foreign key
94205 FKey *p, /* Foreign key for which pTab is the child */
94219 ** The second argument points to an FKey object representing a foreign key
94232 FKey *p,
94283 FKey *pFKey; /* Used to iterate through FKs */
94458 FKey *p;
94504 FKey *p;
94552 FKey *pFKey, /* Foreign key to get action for */
94748 FKey *pFKey; /* Iterator variable */
94768 FKey *pFKey; /* Iterator variable */
94769 FKey *pNext; /* Copy of pFKey->pNextFrom */
94805 /************** End of fkey.c ************************************************/
99813 FKey *pFK;
99861 FKey *pFK; /* A foreign key constraint */
108060 (v, "Call: %s.%s", (p->zName?p->zName:"fkey"), onErrorText(orconf)));