public interface IRecordset extends IColumnInfo
Modifier and Type | Method and Description |
---|---|
boolean |
bor()
Checks if the record cursor is on the first record.
|
int |
cacheSize()
The number of records in the recordset that are cached locally in memory.
|
void |
cacheSize(int pVal)
The number of records in the recordset that are cached locally in memory.
|
com4j.Com4jObject |
clone()
Creates a duplicate of this Recordset object.
|
boolean |
eor()
Checks if the record cursor is after the last record.
|
Object |
fieldValue(Object fieldKey)
The value for the specified field.
|
void |
fieldValue(Object fieldKey,
Object pVal)
The value for the specified field.
|
void |
first()
Moves to the first record and makes it the current record.
|
void |
last()
Moves to the last record and makes it the current record.
|
void |
next()
Moves to the next record and makes it the current record.
|
int |
position()
The current record position (0-based).
|
void |
position(int pVal)
The current record position (0-based).
|
void |
prev()
Moves to the previous record and makes it the current record.
|
int |
recordCount()
The number of records in the Recordset.
|
void |
refresh(int range,
int low,
int high)
Refreshes the Recordset, overwriting values in memory.
|
Object fieldValue(Object fieldKey)
The value for the specified field.
Getter method for the COM property "FieldValue"
fieldKey
- Mandatory java.lang.Object parameter.void fieldValue(Object fieldKey, Object pVal)
The value for the specified field.
Setter method for the COM property "FieldValue"
fieldKey
- Mandatory java.lang.Object parameter.pVal
- Mandatory java.lang.Object parameter.int recordCount()
The number of records in the Recordset.
Getter method for the COM property "RecordCount"
boolean bor()
Checks if the record cursor is on the first record.
Getter method for the COM property "BOR"
boolean eor()
Checks if the record cursor is after the last record.
Getter method for the COM property "EOR"
int cacheSize()
The number of records in the recordset that are cached locally in memory.
Getter method for the COM property "CacheSize"
void cacheSize(int pVal)
The number of records in the recordset that are cached locally in memory.
Setter method for the COM property "CacheSize"
pVal
- Mandatory int parameter.int position()
The current record position (0-based).
Getter method for the COM property "Position"
void position(int pVal)
The current record position (0-based).
Setter method for the COM property "Position"
pVal
- Mandatory int parameter.void first()
Moves to the first record and makes it the current record.
void next()
Moves to the next record and makes it the current record.
void prev()
Moves to the previous record and makes it the current record.
void last()
Moves to the last record and makes it the current record.
com4j.Com4jObject clone()
Creates a duplicate of this Recordset object.
void refresh(@DefaultValue(value="0") int range, int low, int high)
Refreshes the Recordset, overwriting values in memory.
range
- Optional parameter. Default value is 0low
- Optional parameter. Default value is 0high
- Optional parameter. Default value is 0Copyright © 2020. All rights reserved.