|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IRecordSet
Provides access to the rows or features in a recordset.
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.
Method Summary | |
---|---|
ICursor |
getCursor(boolean recycling)
A cursor over the rows or features in the recordset. |
IFields |
getFields()
The fields of the recordset. |
ITable |
getTable()
The source table or feature class for the recordset. |
boolean |
isFeatureCollection()
Indicates if the recordset is a feature collection. |
Method Detail |
---|
IFields getFields() throws IOException, AutomationException
When using a recordset class, the Fields property is used to return the fields in the RecordSet.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.ICursor getCursor(boolean recycling) throws IOException, AutomationException
recycling
- The recycling (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.boolean isFeatureCollection() throws IOException, AutomationException
When using a recordset class, the IsFeatureCollection property is used to return true and is read only if the RecordSet is a feature collection.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.ITable getTable() throws IOException, AutomationException
When using a recordset class, the Table property is used to return the source table or feature class for a RecordSet.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |