Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:FKey

7588 typedef struct FKey FKey;
9625 FKey *pFKey; /* Linked list of all foreign keys in this table */
9687 struct FKey {
9689 FKey *pNextFrom; /* Next foreign key in pFrom */
9691 FKey *pNextTo; /* Next foreign key on table named zTo */
9692 FKey *pPrevTo; /* Previous foreign key on table named zTo */
11433 /* Declarations for functions in fkey.c. All of these are replaced by
11446 SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *);
68653 FKey *pFKey;
74777 FKey *p;
75064 FKey *p;
79000 ** An FKey structure is created and added to the table currently
79015 FKey *pFKey = 0;
79016 FKey *pNextTo;
79095 pNextTo = (FKey *)sqlite3HashInsert(&p->pSchema->fkeyHash,
79130 FKey *pFKey;
83293 /************** Begin file fkey.c ********************************************/
83413 ** sqlite3FkDelete() - Delete an FKey structure.
83476 FKey *pFKey, /* Foreign key to find index for */
83604 ** (fkey.c) as "I.1" and "D.1".
83611 FKey *pFKey, /* Foreign key constraint */
83747 ** (fkey.c) as "I.2" and "D.2".
83754 FKey *pFKey, /* Foreign key relationship */
83868 ** to the FKey structure representing the foreign key constraint on table
83873 SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *pTab){
83875 return (FKey *)sqlite3HashFind(&pTab->pSchema->fkeyHash, pTab->zName, nName);
83927 FKey *p;
83982 FKey *pFKey; /* Used to iterate through FKs */
84127 FKey *p;
84173 FKey *p;
84235 FKey *pFKey, /* Foreign key to get action for */
84428 FKey *pFKey; /* Iterator variable */
84446 FKey *pFKey; /* Iterator variable */
84447 FKey *pNext; /* Copy of pFKey->pNextFrom */
84483 /************** End of fkey.c ************************************************/
88525 FKey *pFK;
95555 (v, "Call: %s.%s", (p->zName?p->zName:"fkey"), onErrorText(orconf)));