Class HttpAgentCommand
IDbCommand implementation for HttpAgent that stores SQL and parameters
for later execution by HttpAgentExecutor.
Inheritance
HttpAgentCommand
Assembly: Reportman.Reporting.dll
Syntax
public class HttpAgentCommand : IDbCommand, IDisposable
Constructors
View Source
HttpAgentCommand(HttpAgentExecutor)
Declaration
public HttpAgentCommand(HttpAgentExecutor executor)
Parameters
Properties
View Source
CommandText
Declaration
public string CommandText { get; set; }
Property Value
View Source
CommandTimeout
Declaration
public int CommandTimeout { get; set; }
Property Value
View Source
CommandType
Declaration
public CommandType CommandType { get; set; }
Property Value
View Source
Connection
Declaration
public IDbConnection Connection { get; set; }
Property Value
View Source
Parameters
Declaration
public IDataParameterCollection Parameters { get; }
Property Value
View Source
Transaction
Declaration
public IDbTransaction Transaction { get; set; }
Property Value
View Source
UpdatedRowSource
Declaration
public UpdateRowSource UpdatedRowSource { get; set; }
Property Value
Methods
View Source
Cancel()
Declaration
View Source
CreateParameter()
Declaration
public IDbDataParameter CreateParameter()
Returns
View Source
Dispose()
Declaration
View Source
ExecuteNonQuery()
Declaration
public int ExecuteNonQuery()
Returns
View Source
ExecuteReader()
Declaration
public IDataReader ExecuteReader()
Returns
View Source
ExecuteReader(CommandBehavior)
Declaration
public IDataReader ExecuteReader(CommandBehavior behavior)
Parameters
Returns
View Source
ExecuteScalar()
Declaration
public object ExecuteScalar()
Returns
View Source
Prepare()
Declaration
Implements