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