odbc-get-all-rows ( statement -- seq )


Vocabulary
odbc

Inputs
statementan ODBC statement handle


Outputs
seqa sequence


Word description
Returns a sequence of all rows available from the statement. Effectively it is the contents of the entire query so may take some time and memory. Each element of the sequence is itself a sequence containing the data for that row. A yield is performed an various intervals so as to not lock up the Factor instance while it is running.

See also
odbc-init, odbc-connect, odbc-disconnect, odbc-prepare, odbc-free-statement, odbc-execute, odbc-next-row, odbc-number-of-columns, odbc-describe-column, odbc-get-field, odbc-get-row-fields, odbc-get-all-rows, odbc-query

Definition