15.4.1 List of HiRDBCommand members

Organization of this subsection
(1) Constructor
(2) Inheritance classes
(3) Properties
(4) Methods

(1) Constructor

HiRDBCommand

(2) Inheritance classes

Component, IDbCommand, ICloneable

(3) Properties

MemberFunction
CommandTextAcquires or sets the text command that is executed on a database.
CommandTimeoutAcquires or sets the wait time before command retries are cancelled and an error is generated.
CommandTypeAcquires or sets a value that indicates how to interpret the CommandText property.
ConnectionAcquires or sets the HiRDBConnection that is used by this HiRDBCommand.
ParametersAcquires HiRDBParameterCollection.
TransactionAcquires or sets the HiRDBTransaction on which this HiRDBCommand is executed.
UpdatedRowSourceAcquires or sets how to apply the command result to DataRow when HiRDBDataAdapter's Update method uses the command result.

(4) Methods

MemberFunction
CancelCancels execution of HiRDBCommand.
CloneCreates a new object which is a copy of the current instance.
CreateParameterCreates a new instance of the HiRDBParameter object.
ExecuteNonQueryExecutes an SQL statement on the HiRDBConnection object and returns the number of affected rows.
ExecuteReaderExecutes CommandText on HiRDBConnection and creates HiRDBDataReader using one of the CommandBehavior values.
ExecuteScalarExecutes a query and returns the first column of the first row in the result set returned by the query. Any excess column or row will be ignored.
PrepareCreates a prepared version of a command (compiled) in a database.