GAResultSetReadStream
Overview
Instance Method Details
currentRow
Gets the current row of the stream
currentRownext
Advances the stream and retrieves the row at the current position. If no more rows are available, it returns nil.
nextnext:
Advances the stream and tries to retrieve the following N rows of the result set. If not enough rows are available, the retrieved array will contain only the available elements.
next: anInteger ^Array streamContents: [ :str | anInteger timesRepeat: [ self next ifNotNilDo: [ :next | str nextPut: next ] ] ]