DoAfterExecute() private method

Carries out instructions after execution of the sql statement
private DoAfterExecute ( DatabaseConnection databaseConnection, IDbTransaction transaction, IDbCommand command ) : void
databaseConnection DatabaseConnection The DatabaseConnection that executed the statement.
transaction IDbTransaction The under which the 's command was run.
command IDbCommand The that was used to execute the .
return void
コード例 #1
0
 /// <summary>
 /// Executes the necessary after execute logic for a particular <see cref="SqlStatement"/>.
 /// </summary>
 /// <param name="statement">The <see cref="SqlStatement"/> for which the after execute logic must be run.</param>
 /// <param name="command">The <see cref="IDbCommand"/> that was used to execute the <see cref="SqlStatement"/>.</param>
 /// <param name="transaction">The <see cref="IDbTransaction"/> under which the <see cref="SqlStatement"/>'s command was run.</param>
 protected virtual void DoAfterExecute(SqlStatement statement, IDbCommand command, IDbTransaction transaction)
 {
     statement.DoAfterExecute(this, transaction, command);
 }
コード例 #2
0
 /// <summary>
 /// Executes the necessary after execute logic for a particular <see cref="SqlStatement"/>.
 /// </summary>
 /// <param name="statement">The <see cref="SqlStatement"/> for which the after execute logic must be run.</param>
 /// <param name="command">The <see cref="IDbCommand"/> that was used to execute the <see cref="SqlStatement"/>.</param>
 /// <param name="transaction">The <see cref="IDbTransaction"/> under which the <see cref="SqlStatement"/>'s command was run.</param>
 protected virtual void DoAfterExecute(SqlStatement statement, IDbCommand command, IDbTransaction transaction)
 {
     statement.DoAfterExecute(this, transaction, command);
 }