Lines Matching defs:SQLITE_IGNORE

2728 ** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the
2732 ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
2750 ** and the callback returns [SQLITE_IGNORE] then the
2753 ** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE]
2757 ** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the
2812 ** Note that SQLITE_IGNORE is also used as a [SQLITE_ROLLBACK | return code]
2816 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */
7216 ** value returned is one of [SQLITE_ROLLBACK], [SQLITE_IGNORE], [SQLITE_FAIL],
7230 ** Note that the [SQLITE_IGNORE] constant is also used as a potential
7235 /* #define SQLITE_IGNORE 2 // Also used by sqlite3_authorizer() callback */
78945 ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If
78948 ** will return with an error. SQLITE_IGNORE means that the SQL statement
78982 ** If SQLITE_IGNORE is returned and pExpr is not NULL, then pExpr is changed
78983 ** to an SQL NULL expression. Otherwise, if pExpr is NULL, then SQLITE_IGNORE
79004 }else if( rc!=SQLITE_IGNORE && rc!=SQLITE_OK ){
79015 ** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN
79065 if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) ){
79072 ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY
79100 }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){
83689 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
86431 ** authorization callback returns SQLITE_IGNORE, behave as if any
86437 isIgnore = (rcauth==SQLITE_IGNORE);
98485 }else if( rc==SQLITE_IGNORE ){
100301 SQLITE_ROLLBACK, SQLITE_ABORT, SQLITE_FAIL, SQLITE_IGNORE, SQLITE_REPLACE