Home | History | Annotate | Download | only in dist

Lines Matching refs:SQLITE_IGNORE

2799 ** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the
2803 ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
2821 ** and the callback returns [SQLITE_IGNORE] then the
2824 ** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE]
2828 ** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the
2883 ** Note that SQLITE_IGNORE is also used as a [SQLITE_ROLLBACK | return code]
2887 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */
7455 ** value returned is one of [SQLITE_ROLLBACK], [SQLITE_IGNORE], [SQLITE_FAIL],
7469 ** Note that the [SQLITE_IGNORE] constant is also used as a potential
7474 /* #define SQLITE_IGNORE 2 // Also used by sqlite3_authorizer() callback */
81041 ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If
81044 ** will return with an error. SQLITE_IGNORE means that the SQL statement
81078 ** If SQLITE_IGNORE is returned and pExpr is not NULL, then pExpr is changed
81079 ** to an SQL NULL expression. Otherwise, if pExpr is NULL, then SQLITE_IGNORE
81100 }else if( rc!=SQLITE_IGNORE && rc!=SQLITE_OK ){
81111 ** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN
81161 if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) ){
81168 ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY
81196 }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){
85797 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
88548 ** authorization callback returns SQLITE_IGNORE, behave as if any
88554 isIgnore = (rcauth==SQLITE_IGNORE);
100702 }else if( rc==SQLITE_IGNORE ){
102524 SQLITE_ROLLBACK, SQLITE_ABORT, SQLITE_FAIL, SQLITE_IGNORE, SQLITE_REPLACE