1.Dd December 19, 2018 2.Dt SQLITE_DENY 3 3.Os 4.Sh NAME 5.Nm SQLITE_DENY , 6.Nm SQLITE_IGNORE 7.Nd Authorizer Return Codes 8.Sh SYNOPSIS 9.Fd #define SQLITE_DENY 10.Fd #define SQLITE_IGNORE 11.Sh DESCRIPTION 12The authorizer callback function must 13return either SQLITE_OK or one of these two constants in order 14to signal SQLite whether or not the action is permitted. 15See the authorizer documentation for additional 16information. 17.Pp 18Note that SQLITE_IGNORE is also used as a conflict resolution mode 19returned from the sqlite3_vtab_on_conflict() 20interface. 21.Sh SEE ALSO 22.Xr SQLITE_ROLLBACK 3 , 23.Xr sqlite3_set_authorizer 3 , 24.Xr sqlite3_vtab_on_conflict 3 , 25.Xr SQLITE_OK 3 26