Interface IProcedureRecordSet
The result of executing a table procedure.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IProcedureRecordSet : IRecordSet
Remarks
The result of executing a table procedure. Contains zero or more IProcedureRecord objects, one for each record returned by the procedure.
Methods
GetProcedureRecord(int)
Gets a record by row number.
Declaration
IProcedureRecord GetProcedureRecord(int row)
Parameters
Type | Name | Description |
---|---|---|
int | row | the zero-based row number |
Returns
Type | Description |
---|---|
IProcedureRecord | the record for the specified row ApptrieveException if the row index is invalid |
Remarks
Gets a record by row number. This is equivalent to calling GetRecord(int) except that no cast is required to obtain the IProcedureRecord interface.