Firebird ADO.NET Provider SDK Documentation - v1.7

FbBatchExecution.OnCommandExecuted Method 

The trigger function for CommandExecuted event.

[Visual Basic]
Overridable Protected Sub OnCommandExecuted( _
   ByVal commandText As String, _
   ByVal dataReader As FbDataReader, _
   ByVal rowsAffected As Integer _
)
[C#]
protected virtual void OnCommandExecuted(
   string commandText,
   FbDataReader dataReader,
   int rowsAffected
);

Parameters

commandText
The CommandText of the executed SQL command.
dataReader
The FbDataReader instance with the returned data. If the command executed is not meant to return data (ex: UPDATE, INSERT...) this parameter must be setled to null.
rowsAffected
The rows that were affected by the executed SQL command. If the executed command is not meant to return this kind of information (ex: SELECT) this parameter must be setled to -1.

See Also

FbBatchExecution Class | FirebirdSql.Data.Firebird.Isql Namespace