Lines Matching defs:SQLITE_DENY
3471 ** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be
3473 ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
3478 ** requested is ok. ^When the callback returns [SQLITE_DENY], the
3562 #define SQLITE_DENY 1 /* Abort the SQL statement with an error */
107894 if( auth==SQLITE_DENY ){
121156 ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If
121157 ** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY
121198 ** is treated as SQLITE_DENY. In this case an error is left in pParse.
121216 if( rc==SQLITE_DENY ){
121233 ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY,
121289 ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY
121327 if( rc==SQLITE_DENY ){
121331 rc = SQLITE_DENY;
128010 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
128011 if( rcauth==SQLITE_DENY ){
147384 testcase( i==SQLITE_DENY );
153790 if( rc==SQLITE_DENY ){