Resultset Members

These members describe the set of return values from Transaction Execute call.

Functions

Name Description
Close Close the recordset; this will automatically be done when the Resultset object falls out of scope.
MoveNext Move to the next record in the Resultset.

Properties

Name Description
FieldsCount Returns the number of fields in this Resultset. Return value: Integer. This property is read only.
IsEOF Returns True if past the last record in the Resultset. Return value: Boolean. This property is read only.
Value Returns the specified value from current record of the Resultset; Index is 1-based field index. Return value: Variant. This property is read only.
Values Return array of all values from the current record. Return value: Variant(). This property is read only.