The ADO Record object:
Depending on the specific
ADO Provider it is possible, that a single row
SQL query result will not be returned in the form of the
AdoRecordset object containing a single record, but in the form of the
AdoRecord object (represents the single row). Není to ale typické pro nejběžněji užívané
ADO Provider. The
AdoRecord object is usually returned by explicit operations, when the specific
AdoRecord is returned from the existing
AdoRecordset object. The
AdoRecord object consists of multiple
AdoField objects, the same way as the
AdoRecordset object. The difference is that the methods for moving the current record position are not supported (e.g.
MoveFirst). In order to keep the documntation simple, it will be referred only to the commonly returned
AdoRecordset object, although in some special cases the system may also return the
AdoRecord object.