Interface IRecordSetMetaData
The methods and properties in the RecordSetMetaData class manage recordset metadata.
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IRecordSetMetaData : IMetaData
Remarks
The methods and properties in the RecordSetMetaData class manage recordset metadata.
Properties
FieldNames
Gets a list of the fields in a recordset.
Declaration
IList<string> FieldNames { get; }
Property Value
Type | Description |
---|---|
IList<string> | This property returns a list of the fields in a recordset. |
Remarks
Gets a list of the fields in a recordset.
ScrollOperations
Gets the available scroll operations for the record set.
Declaration
IDictionary<ScrollMovement, string> ScrollOperations { get; }
Property Value
Type | Description |
---|---|
IDictionary<ScrollMovement, string> |
Remarks
Gets the available scroll operations for the record set. The returned Dictionary object contains key-value pairs, where the key is a ScrollMovement object that contains a scroll operation type and the value is a String object containing the name of an entity operation.
SupportsDirectInserts
Gets whether the host allows direct insertion of records for a recordset.
Declaration
bool SupportsDirectInserts { get; }
Property Value
Type | Description |
---|---|
bool | This property returns a boolean indicating whether the host allows direct insertion of records as part of a recordset. |
Remarks
Gets whether the host allows direct insertion of records as part of a recordset.
SupportsSelect
Gets whether the host supports a select operation for a recordset.
Declaration
bool SupportsSelect { get; }
Property Value
Type | Description |
---|---|
bool | This property returns a boolean indicating whether the host supports a select operation for a recordset. |
Remarks
Gets whether the host supports a select operation for a recordset.
Methods
GetScrollOperation(ScrollMovement)
Gets the scroll operation for the specified scroll movement.
Declaration
string GetScrollOperation(ScrollMovement movement)
Parameters
Type | Name | Description |
---|---|---|
ScrollMovement | movement | Specifies a scroll movement, in the form of a member of the ScrollMovement enumeration. |
Returns
Type | Description |
---|---|
string | This method returns the operation associated with the specified scroll movement. |
Remarks
Gets the scroll operation for the specified scroll movement, in the context of the current recordset.
ToString()
Generates a string object that represents the current values of this IRecordSetMetaData object.
Declaration
string ToString()
Returns
Type | Description |
---|---|
string | the string representation of this object |