SQLite C 接口
授权方返回码
#define SQLITE_DENY 1 /* Abort the SQL statement with an error */ #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */
授权者回调函数必须返回SQLITE_OK或 这两个常量之一,以便向 SQLite 发出该操作是否被允许的信号。有关其他信息,请参阅 授权方文档。
请注意,SQLITE_IGNORE 也用作从sqlite3_vtab_on_conflict()接口 返回的冲突解决模式。