Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:SQLITE_DENY

2666 ** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be
2668 ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
2673 ** requested is ok. ^When the callback returns [SQLITE_DENY], the
2748 #define SQLITE_DENY 1 /* Abort the SQL statement with an error */
70075 if( auth==SQLITE_DENY ){
76648 ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If
76649 ** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY
76687 ** is treated as SQLITE_DENY. In this case an error is left in pParse.
76700 if( rc==SQLITE_DENY ){
76719 ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY,
76775 ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY
76800 if( rc==SQLITE_DENY ){
76804 rc = SQLITE_DENY;
81348 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE );
81349 if( rcauth==SQLITE_DENY ){
95922 if( rc==SQLITE_DENY ){