Searched refs:TRIGGER_BEFORE (Results 1 – 5 of 5) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | update.c | 895 pTrigger, pChanges, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onError in sqlite3Update() 929 pParse, pTrigger, pChanges, 1, TRIGGER_BEFORE, pTab, onError in sqlite3Update() 946 }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask & MASKBIT32(i)) ){ in sqlite3Update() 972 if( tmask&TRIGGER_BEFORE ){ in sqlite3Update() 975 TRIGGER_BEFORE, pTab, regOldRowid, onError, labelContinue); in sqlite3Update()
|
| H A D | trigger.c | 264 pTrigger->tr_tm = tr_tm==TK_BEFORE ? TRIGGER_BEFORE : TRIGGER_AFTER; in sqlite3BeginTrigger() 806 p->tr_tm = TRIGGER_BEFORE; in triggersReallyExist() 1200 (pTrigger->tr_tm==TRIGGER_BEFORE ? "BEFORE" : "AFTER"), in codeRowTrigger() 1385 assert( tr_tm==TRIGGER_BEFORE || tr_tm==TRIGGER_AFTER ); in sqlite3CodeRowTrigger()
|
| H A D | delete.c | 777 pParse, pTrigger, 0, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onconf in sqlite3GenerateRowDelete() 798 TK_DELETE, 0, TRIGGER_BEFORE, pTab, iOld, onconf, iLabel in sqlite3GenerateRowDelete()
|
| H A D | insert.c | 1162 if( tmask & TRIGGER_BEFORE ){ in sqlite3Insert() 1217 if( tmask & TRIGGER_BEFORE ){ in sqlite3Insert() 1269 sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE, in sqlite3Insert()
|
| H A D | sqliteInt.h | 3853 #define TRIGGER_BEFORE 1 macro
|