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 IModel
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 |
---|---|
IModel |
The record for the specified row |
Remarks
Gets a record by row number. This is equivalent to calling
Get
Exceptions
Type | Condition |
---|---|
Apptrieve |
Thrown if the row index is invalid |