The data associated with a call into the authorizer.
Namespace: CNClrLib.ADONet.SQLiteEventArgs
TObject
CNClrLib.ADONet.SQLiteEventArgs.TSQLiteAuthorizeEventArgs
|
Delphi
|
type
TSQLiteAuthorizeEventArgs = class
end;
|
|
Name
|
Description
|

|
ActionCode
|
The action code responsible for the current call into the authorizer.
|

|
Argument1
|
The first string argument for the current call into the authorizer. The exact value will vary based on the action code, see the TSQLiteAuthorizerActionCode enumeration for possible values.
|

|
Argument2
|
The second string argument for the current call into the authorizer. The exact value will vary based on the action code, see the TSQLiteAuthorizerActionCode enumeration for possible values.
|

|
Context
|
The name of the inner-most trigger or view that is responsible for the access attempt or a null value if this access attempt is directly from top-level SQL code.
|

|
Database
|
The database name for the current call into the authorizer, if applicable.
|

|
EventArgs
|
Provides direct access to ADO.Net System.Data.SQLite.AuthorizerEventArgs class.
|

|
ReturnCode
|
The return code for the current call into the authorizer.
|

|
UserData
|
The user-defined native data associated with this event. Currently, this will always contain the value of Zero.
|
Top
|