This class represents the result of a SQL request.
This class is not creatable.
This class acts like an array.
DIM hResult AS Result DIM aVariant AS Variant aVariant = hResult [ Field AS String ] |
Returns the value of a field in the current record of the Result object.
DIM hResult AS Result DIM aVariant AS Variant hResult [ Field AS String ] = aVariant |
Modifies the value of a field in the current record of the Result object.
This class is enumerable with the FOR EACH keyword.
DIM hResult AS Result FOR EACH hResult ... NEXT |
Enumerates all records in the Result object by moving its internal cursor.