(a) Cancel
void Cancel ()
- Return: void
- Description: Cancels execution of HiRDBCommand.
(b) Clone
object Clone ()
- Return
- object: New object which is a copy of this instance
- Description: Creates a new object which is a copy of the current instance.
(c) CreateParameter
Hitachi.HiRDB.HiRDBParameter CreateParameter ()
- Return
- HiRDBParameter: HiRDBParameter object
- Description: Creates a new instance of the HiRDBParameter object.
(d) ExecuteNonQuery
- int ExecuteNonQuery ()
- Return
- int: Number of affected rows
- Description: Executes an SQL statement on the HiRDBConnection object and returns the number of affected rows.
- Exception: HiRDBException
- int ExecuteNonQuery (int)
- Argument
- int nArraySize: Number of array elements
- Return
- int: Number of affected rows
- Description: Uses the INSERT facility using arrays to execute an SQL statement on the HiRDBConnection object and returns the number of affected rows.
- Exception: HiRDBException
(e) ExecuteReader
- Hitachi.HiRDB.HiRDBDataReader ExecuteReader ()
- Return
- HiRDBDataReader: HiRDBDataReader object
- Description: Executes CommandText on HiRDBConnection to create HiRDBDataReader.
- Exception: HiRDBException
- ExecuteReader (System.Data.CommandBehavior)
- Argument
- System.DataCommandBehavior behavior: One of the CommandBehavior values
- Return
- HiRDBDataReader: HiRDBDataReader object
- Description: Executes CommandText on HiRDBConnection and creates HiRDBDataReader using one of the CommandBehavior values.
- Exception: HiRDBException
(f) ExecuteScalar
object ExecuteScalar ()
- Return
- object: First column of the first row in the result set
- Description: Executes a query and returns the first column of the first row in the result set returned as .NET Framework's data type by that query. Any remaining column or row will be ignored.
Exception: HiRDBException
(g) Prepare
void Prepare ()
- Return: void
- Description: Creates a prepared version of a command (compiled) in a database.
- Exception: HiRDBException