Interface IModelRecordSet
The result of fetching records from a recordset in a model.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IModelRecordSet : IRecordSet
Remarks
The result of fetching records from a recordset in a model. Contains zero or more IModelRecord objects, one for each record returned by the fetch.
Methods
GetModelRecord(int)
Gets a record by row number.
Declaration
IModelRecord GetModelRecord(int row)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | The zero-based row number |
Returns
| Type | Description |
|---|---|
| IModelRecord | The record for the specified row |
Remarks
Gets a record by row number. This is equivalent to calling GetRecord(int) except that no cast is required to obtain the IModelRecord interface.
Exceptions
| Type | Condition |
|---|---|
| ApptrieveException | Thrown if the row index is invalid |