xref: /netbsd-src/external/public-domain/sqlite/man/SQLITE_DENY.3 (revision a24efa7dea9f1f56c3bdb15a927d3516792ace1c)
1.Dd $Mdocdate$
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  return code
19from the sqlite3_vtab_on_conflict() interface.
20.Sh SEE ALSO
21.Xr sqlite3_set_authorizer 3 ,
22.Xr sqlite3_vtab_on_conflict 3 ,
23.Xr SQLITE_OK 3 ,
24.Xr SQLITE_ROLLBACK 3
25