Home
last modified time | relevance | path

Searched defs:FKey (Results 1 – 2 of 2) sorted by relevance

/PHP-5.3/ext/sqlite/libsqlite/src/
H A DsqliteInt.h249 typedef struct FKey FKey; typedef
538 struct FKey { struct
540 FKey *pNextFrom; /* Next foreign key in pFrom */ argument
542 FKey *pNextTo; /* Next foreign key that points to zTo */ argument
543 int nCol; /* Number of columns in this key */
544 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
547 } *aCol; /* One entry for each of nCol column s */
548 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */
549 u8 updateConf; /* How to resolve conflicts that occur on UPDATE */
550 u8 deleteConf; /* How to resolve conflicts that occur on DELETE */
[all …]
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c7848 typedef struct FKey FKey; typedef
9955 struct FKey { struct
9957 FKey *pNextFrom; /* Next foreign key in pFrom */ argument
9959 FKey *pNextTo; /* Next foreign key on table named zTo */ argument
9960 FKey *pPrevTo; /* Previous foreign key on table named zTo */ argument
9961 int nCol; /* Number of columns in this key */
9963 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */
9964 u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */
9965 Trigger *apTrigger[2]; /* Triggers for aAction[] actions */
9966 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
[all …]

Completed in 309 milliseconds