Home | History | Annotate | Download | only in orig

Lines Matching defs:SQLITE_DENY

2735 ** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be
2737 ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
2742 ** requested is ok. ^When the callback returns [SQLITE_DENY], the
2820 #define SQLITE_DENY 1 /* Abort the SQL statement with an error */
82028 if( auth==SQLITE_DENY ){
90601 ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If
90602 ** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY
90643 ** is treated as SQLITE_DENY. In this case an error is left in pParse.
90660 if( rc==SQLITE_DENY ){
90679 ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY,
90735 ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY
90764 if( rc==SQLITE_DENY ){
90768 rc = SQLITE_DENY;
95885 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
95886 if( rcauth==SQLITE_DENY ){
109929 testcase( i==SQLITE_DENY );
113651 if( rc==SQLITE_DENY ){