C# Class Deeply.ExecuteSqlTask

ExecuteSqlTask class definition.
Inheritance: TaskBase
Show file Open project: jsnape/deeply

Public Methods

Method Description
ExecuteSqlTask ( IDbConnectionFactory connectionFactory, string commandText ) : System

Initializes a new instance of the ExecuteSqlTask class.

ExecuteSqlTask ( string name, IDbConnectionFactory connectionFactory, string commandText ) : System

Initializes a new instance of the ExecuteSqlTask class.

Protected Methods

Method Description
ExecuteInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task

Implementation function for the execution.

VerifyInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task

Implementation function for the verification.

Method Details

ExecuteInternalAsync() protected method

Implementation function for the execution.
protected ExecuteInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task
context ITaskContext Verification context.
return System.Threading.Tasks.Task

ExecuteSqlTask() public method

Initializes a new instance of the ExecuteSqlTask class.
public ExecuteSqlTask ( IDbConnectionFactory connectionFactory, string commandText ) : System
connectionFactory IDbConnectionFactory Connection factory.
commandText string Command to execute.
return System

ExecuteSqlTask() public method

Initializes a new instance of the ExecuteSqlTask class.
public ExecuteSqlTask ( string name, IDbConnectionFactory connectionFactory, string commandText ) : System
name string Task name.
connectionFactory IDbConnectionFactory Connection factory.
commandText string Command to execute.
return System

VerifyInternalAsync() protected method

Implementation function for the verification.
protected VerifyInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task
context ITaskContext Verification context.
return System.Threading.Tasks.Task