Lines Matching refs:orconf

10786 ** TriggerPrg.orconf, is stored in the TriggerPrg.pProgram variable.
10788 ** values for both pTrigger and orconf.
10797 int orconf; /* Default ON CONFLICT policy */
10798 SubProgram *pProgram; /* Program implementing pTrigger/orconf */
10996 * orconf -> stores the ON CONFLICT algorithm
11022 u8 orconf; /* OE_Rollback etc. */
97493 pTriggerStep->orconf = OE_Default;
97534 u8 orconf /* The conflict algorithm (OE_Abort, OE_Replace, etc.) */
97546 pTriggerStep->orconf = orconf;
97566 u8 orconf /* The conflict algorithm. (OE_Abort, OE_Ignore, etc) */
97574 pTriggerStep->orconf = orconf;
97596 pTriggerStep->orconf = OE_Default;
97841 int orconf /* Conflict algorithm. (OE_Abort, etc) */
97864 pParse->eOrconf = (orconf==OE_Default)?pStep->orconf:(u8)orconf;
97946 ** implementing trigger pTrigger with ON CONFLICT policy orconf.
97952 int orconf /* ON CONFLICT policy to code trigger program with */
97978 pPrg->orconf = orconf;
97998 pTrigger->zName, onErrorText(orconf),
98026 codeTriggerProgram(pSubParse, pTrigger->step_list, orconf);
98033 VdbeComment((v, "End: %s.%s", pTrigger->zName, onErrorText(orconf)));
98056 ** trigger pTrigger with default ON CONFLICT algorithm orconf. If no such
98064 int orconf /* ON CONFLICT algorithm. */
98076 pPrg && (pPrg->pTrigger!=pTrigger || pPrg->orconf!=orconf);
98082 pPrg = codeRowTrigger(pParse, pTrigger, pTab, orconf);
98090 ** table pTab. The reg, orconf and ignoreJump parameters passed to this
98099 int orconf, /* ON CONFLICT policy */
98104 pPrg = getRowTrigger(pParse, p, pTab, orconf);
98115 (v, "Call: %s.%s", (p->zName?p->zName:"fkey"), onErrorText(orconf)));
98161 ** Parameter orconf is the default conflict resolution algorithm for the
98174 int orconf, /* ON CONFLICT policy */
98198 sqlite3CodeRowTriggerDirect(pParse, p, pTab, reg, orconf, ignoreJump);
98235 int orconf /* Default ON CONFLICT policy for trigger steps */
98247 pPrg = getRowTrigger(pParse, p, pTab, orconf);
106494 "defer_subclause_opt", "orconf", "resolvetype", "raisetype",
106619 /* 102 */ "orconf ::=",
106620 /* 103 */ "orconf ::= OR resolvetype",
106687 /* 170 */ "cmd ::= UPDATE orconf fullname indexed_opt SET setlist where_opt",
106693 /* 176 */ "insert_cmd ::= INSERT orconf",
106807 /* 290 */ "trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist where_opt",
107868 case 102: /* orconf ::= */
107871 case 103: /* orconf ::= OR resolvetype */
108087 case 170: /* cmd ::= UPDATE orconf fullname indexed_opt SET setlist where_opt */
108115 case 176: /* insert_cmd ::= INSERT orconf */
108570 case 290: /* trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist where_opt */