Home | History | Annotate | Download | only in dist

Lines Matching defs:SQLITE_DENY

2541 ** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be
2543 ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
2548 ** requested is ok. ^When the callback returns [SQLITE_DENY], the
2626 #define SQLITE_DENY 1 /* Abort the SQL statement with an error */
77514 if( auth==SQLITE_DENY ){
85920 ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If
85921 ** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY
85959 ** is treated as SQLITE_DENY. In this case an error is left in pParse.
85972 if( rc==SQLITE_DENY ){
85991 ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY,
86047 ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY
86072 if( rc==SQLITE_DENY ){
86076 rc = SQLITE_DENY;
91153 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
91154 if( rcauth==SQLITE_DENY ){
104786 testcase( i==SQLITE_DENY );
108457 if( rc==SQLITE_DENY ){