Provides access to the rows or features in a recordset.
Members
Name | Description | |
---|---|---|
Cursor | A cursor over the rows or features in the recordset. | |
Fields | The fields of the recordset. | |
IsFeatureCollection | Indicates if the recordset is a feature collection. | |
Table | The source table or feature class for the recordset. |
IRecordSet.Cursor Property
A cursor over the rows or features in the recordset.
Public Function get_Cursor ( _
ByVal Recycling As Boolean _
) As ICursor
public ICursor get_Cursor (
bool Recycling
);
Remarks
When using a recordset class, the Cursor property is used to return a cursor over the rows or feature in the RecordSet.
IRecordSet.Fields Property
The fields of the recordset.
Public ReadOnly Property Fields As IFields
public IFields Fields {get;}
Remarks
When using a recordset class, the Fields property is used to return the fields in theRecordSet.
IRecordSet.IsFeatureCollection Property
Indicates if the recordset is a feature collection.
Public ReadOnly Property IsFeatureCollection As Boolean
public bool IsFeatureCollection {get;}
Remarks
When using a recordset class, the IsFeatureCollection property is used to return true and is read only if the RecordSet is a feature collection.
IRecordSet.Table Property
The source table or feature class for the recordset.
Public ReadOnly Property Table As ITable
public ITable Table {get;}
Remarks
When using a recordset class, the Table property is used to return the source table or feature class for a RecordSet.
Classes that implement IRecordSet
Classes | Description |
---|---|
RecordSet | Esri Record Set object. |
Remarks
The IRecordset interface exposes methods and properties to perform geodatabase recordset operations. A recordset is a data structure that consists of a group of database records, and can either come from a base table or as the result of a query to the table.