Lines Matching refs:orconf

10486 ** TriggerPrg.orconf, is stored in the TriggerPrg.pProgram variable.
10488 ** values for both pTrigger and orconf.
10497 int orconf; /* Default ON CONFLICT policy */
10498 SubProgram *pProgram; /* Program implementing pTrigger/orconf */
10697 * orconf -> stores the ON CONFLICT algorithm
10723 u8 orconf; /* OE_Rollback etc. */
95140 pTriggerStep->orconf = OE_Default;
95181 u8 orconf /* The conflict algorithm (OE_Abort, OE_Replace, etc.) */
95193 pTriggerStep->orconf = orconf;
95213 u8 orconf /* The conflict algorithm. (OE_Abort, OE_Ignore, etc) */
95221 pTriggerStep->orconf = orconf;
95243 pTriggerStep->orconf = OE_Default;
95488 int orconf /* Conflict algorithm. (OE_Abort, etc) */
95511 pParse->eOrconf = (orconf==OE_Default)?pStep->orconf:(u8)orconf;
95593 ** implementing trigger pTrigger with ON CONFLICT policy orconf.
95599 int orconf /* ON CONFLICT policy to code trigger program with */
95625 pPrg->orconf = orconf;
95645 pTrigger->zName, onErrorText(orconf),
95673 codeTriggerProgram(pSubParse, pTrigger->step_list, orconf);
95680 VdbeComment((v, "End: %s.%s", pTrigger->zName, onErrorText(orconf)));
95703 ** trigger pTrigger with default ON CONFLICT algorithm orconf. If no such
95711 int orconf /* ON CONFLICT algorithm. */
95723 pPrg && (pPrg->pTrigger!=pTrigger || pPrg->orconf!=orconf);
95729 pPrg = codeRowTrigger(pParse, pTrigger, pTab, orconf);
95737 ** table pTab. The reg, orconf and ignoreJump parameters passed to this
95746 int orconf, /* ON CONFLICT policy */
95751 pPrg = getRowTrigger(pParse, p, pTab, orconf);
95762 (v, "Call: %s.%s", (p->zName?p->zName:"fkey"), onErrorText(orconf)));
95808 ** Parameter orconf is the default conflict resolution algorithm for the
95821 int orconf, /* ON CONFLICT policy */
95845 sqlite3CodeRowTriggerDirect(pParse, p, pTab, reg, orconf, ignoreJump);
95882 int orconf /* Default ON CONFLICT policy for trigger steps */
95894 pPrg = getRowTrigger(pParse, p, pTab, orconf);
103802 "defer_subclause_opt", "orconf", "resolvetype", "raisetype",
103927 /* 102 */ "orconf ::=",
103928 /* 103 */ "orconf ::= OR resolvetype",
103995 /* 170 */ "cmd ::= UPDATE orconf fullname indexed_opt SET setlist where_opt",
104001 /* 176 */ "insert_cmd ::= INSERT orconf",
104115 /* 290 */ "trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist where_opt",
105176 case 102: /* orconf ::= */
105179 case 103: /* orconf ::= OR resolvetype */
105395 case 170: /* cmd ::= UPDATE orconf fullname indexed_opt SET setlist where_opt */
105423 case 176: /* insert_cmd ::= INSERT orconf */
105878 case 290: /* trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist where_opt */