query-each ( ... result-set quot: ( ... result-set -- ... ) -- ... )


Vocabulary
db

Inputs
result-seta result-set
quota quotation


Outputs
None

Word description
Applies the quotation to each row of the result-set in order.

Definition


: query-each
( ... result-set quot: ( ... result-set -- ... ) -- ... )
over more-rows?
[ [ call ] 2keep over advance-row query-each ] [ 2drop ] if
; inline recursive