Package SQLite
Interface Authorizer
public interface Authorizer
Callback interface for SQLite's authorizer function.
-
Method Summary
-
Method Details
-
authorize
Callback to authorize access.- Parameters:
what- integer indicating type of accessarg1- first argument (table, view, index, or trigger name)arg2- second argument (file, table, or column name)arg3- third argument (database name)arg4- third argument (trigger name)- Returns:
- Constants.SQLITE_OK for success, Constants.SQLITE_IGNORE for don't allow access but don't raise an error, Constants.SQLITE_DENY for abort SQL statement with error.
-