Abstract class
The class for result sets that support a one-shot forward iteration protocol.
<result-set>
sql
sql
Instances of this class represent the results of an SQL SELECT statement, and support a one-shot forward-iteration-protocol. By one-shot, we mean each element of the collection can be visited only once, and no previously visited element can be revisited. A condition is signaled if the application tries to revisit a record. Thus, backward-iteration-protocol is not supported on this collection.
This collection class is useful when the result of a query is large and each element can be processed individually.
The function type-for-copy returns <simple-object-vector> when applied to objects of this class.