Lines Matching refs:OE_Abort

9515 #define OE_Abort    2   /* Back out changes but do no rollback transaction */
9520 #define OE_Restrict 6 /* OE_Abort for IMMEDIATE, OE_Rollback for DEFERRED */
9606 u8 onError; /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */
55656 ** * OP_Halt with P1=SQLITE_CONSTRAINT and P2=OE_Abort.
55657 ** * OP_HaltIfNull with P1=SQLITE_CONSTRAINT and P2=OE_Abort.
55684 && (pOp->p1==SQLITE_CONSTRAINT && pOp->p2==OE_Abort))
56762 p->errorAction = OE_Abort;
57318 p->errorAction = OE_Abort;
57452 }else if( p->errorAction==OE_Abort ){
61230 ** if P2==OE_Fail. Do the rollback if P2==OE_Rollback. If P2==OE_Abort,
64989 p->errorAction = OE_Abort;
71637 || pExpr->affinity==OE_Abort
71646 if( pExpr->affinity==OE_Abort ){
77180 pParse, OE_Abort, "indexed columns are not unique", P4_STATIC);
77213 int onError, /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */
78378 if( onError==OE_Abort ){
81652 pParse, OE_Abort, "foreign key constraint failed", P4_STATIC
81890 pParse, OE_Abort, "foreign key constraint failed", P4_STATIC
82290 pRaise->affinity = OE_Abort;
82378 sqlite3CodeRowTriggerDirect(pParse, pAction, pTab, regOld, OE_Abort, 0);
83038 sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_INTERNAL, OE_Abort);
83606 onError = OE_Abort;
83609 onError = OE_Abort;
83611 assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
83614 case OE_Abort:
83647 onError = overrideError!=OE_Default ? overrideError : OE_Abort;
83651 if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-15569-63625 */
83667 onError = OE_Abort;
83676 onError = OE_Abort;
83680 case OE_Abort:
83771 onError = OE_Abort;
83775 else if( onError==OE_Fail ) onError = OE_Abort;
83787 assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
83791 case OE_Abort:
83974 ** * The same onError processing (OE_Abort, OE_Ignore, etc)
84069 onError = OE_Abort;
84071 if( onError!=OE_Abort && onError!=OE_Rollback ){
86111 { OP_Halt, SQLITE_OK, OE_Abort, 0}, /* 3 */
92857 u8 orconf /* The conflict algorithm (OE_Abort, OE_Replace, etc.) */
92889 u8 orconf /* The conflict algorithm. (OE_Abort, OE_Ignore, etc) */
93153 int orconf /* Conflict algorithm. (OE_Abort, etc) */
93229 case OE_Abort: return "abort";
103108 {yygotominor.yy4 = OE_Abort;}