Home
last modified time | relevance | path

Searched refs:OE_Ignore (Results 1 – 9 of 9) sorted by relevance

/sqlite-3.40.0/src/
H A Dinsert.c1775 || onError==OE_Ignore || onError==OE_Replace ); in sqlite3GenerateConstraintChecks()
1804 assert( onError==OE_Ignore ); in sqlite3GenerateConstraintChecks()
1860 if( onError==OE_Ignore ){ in sqlite3GenerateConstraintChecks()
1915 overrideError = OE_Ignore; in sqlite3GenerateConstraintChecks()
2027 onError = OE_Ignore; /* DO NOTHING is the same as INSERT OR IGNORE */ in sqlite3GenerateConstraintChecks()
2137 case OE_Ignore: { in sqlite3GenerateConstraintChecks()
2138 testcase( onError==OE_Ignore ); in sqlite3GenerateConstraintChecks()
2250 onError = OE_Ignore; /* DO NOTHING is the same as INSERT OR IGNORE */ in sqlite3GenerateConstraintChecks()
2346 || onError==OE_Ignore || onError==OE_Replace || onError==OE_Update ); in sqlite3GenerateConstraintChecks()
2363 case OE_Ignore: { in sqlite3GenerateConstraintChecks()
[all …]
H A Dtreeview.c794 case OE_Ignore: zType = "ignore"; break; in sqlite3TreeViewExpr()
1078 case OE_Ignore: zLabel = "INSERT OR IGNORE"; break; in sqlite3TreeViewInsert()
1149 case OE_Ignore: zLabel = "UPDATE OR IGNORE"; break; in sqlite3TreeViewUpdate()
H A Dfkey.c340 && !pParse->isMultiWrite) ? OE_Abort : OE_Ignore); in fkLookupParent()
H A Dvtab.c1294 assert( OE_Ignore==4 && OE_Replace==5 ); in sqlite3_vtab_on_conflict()
H A Dtrigger.c1122 case OE_Ignore: return "ignore"; in onErrorText()
H A Dparse.y463 resolvetype(A) ::= IGNORE. {A = OE_Ignore;}
1616 A->affExpr = OE_Ignore;
H A Dexpr.c4846 || pExpr->affExpr==OE_Ignore in sqlite3ExprCodeTarget()
4857 if( pExpr->affExpr==OE_Ignore ){ in sqlite3ExprCodeTarget()
4859 v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); in sqlite3ExprCodeTarget()
H A Dvdbe.c1162 if( pOp->p2==OE_Ignore ){ in sqlite3VdbeExec()
8264 || pOp->p5==OE_Abort || pOp->p5==OE_Ignore || pOp->p5==OE_Replace in sqlite3VdbeExec()
8296 if( pOp->p5==OE_Ignore ){ in sqlite3VdbeExec()
H A DsqliteInt.h2474 #define OE_Ignore 4 /* Ignore the error. Do not do the INSERT or UPDATE */ macro