Home | History | Annotate | Download | only in orig

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**);
74758 FKey *pFKey;
82864 FKey *p;
83151 FKey *p;
88596 ** An FKey structure is created and added to the table currently
88611 FKey *pFKey = 0;
88612 FKey *pNextTo;
88691 pNextTo = (FKey *)sqlite3HashInsert(&p->pSchema->fkeyHash,
88726 FKey *pFKey;
93421 /************** Begin file fkey.c ********************************************/
93543 ** sqlite3FkDelete() - Delete an FKey structure.
93606 FKey *pFKey, /* Foreign key to find index for */
93736 ** (fkey.c) as "I.1" and "D.1".
93743 FKey *pFKey, /* Foreign key constraint */
93951 ** (fkey.c) as "I.2" and "D.2".
93958 FKey *pFKey, /* The foreign key linking pSrc to pTab */
94068 ** This function returns a linked list of FKey objects (connected by
94069 ** FKey.pNextTo) holding all children of table pTab. For example,
94076 ** to the FKey structure representing the foreign key constraint on table
94081 SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *pTab){
94083 return (FKey *)sqlite3HashFind(&pTab->pSchema->fkeyHash, pTab->zName, nName);
94135 FKey *p;
94172 ** The second argument points to an FKey object representing a foreign key
94185 FKey *p, /* Foreign key for which pTab is the child */
94199 ** The second argument points to an FKey object representing a foreign key
94212 FKey *p,
94263 FKey *pFKey; /* Used to iterate through FKs */
94438 FKey *p;
94484 FKey *p;
94532 FKey *pFKey, /* Foreign key to get action for */
94728 FKey *pFKey; /* Iterator variable */
94748 FKey *pFKey; /* Iterator variable */
94749 FKey *pNext; /* Copy of pFKey->pNextFrom */
94785 /************** End of fkey.c ************************************************/
99793 FKey *pFK;
99841 FKey *pFK; /* A foreign key constraint */
108040 (v, "Call: %s.%s", (p->zName?p->zName:"fkey"), onErrorText(orconf)));