odbc-next-row ( statement -- bool )


Vocabulary
odbc

Inputs
statementan ODBC statement handle


Outputs
boola boolean indicating success or failure


Word description
Retrieves the next available row from the database. If no next row is available then f is returned. Once the row is retrieved odbc-number-of-columns, odbc-describe-column, odbc-get-field and odbc-get-row-fields can be used to query the data retrieved.

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

: odbc-next-row ( statement -- bool ) SQLFetch succeeded? ;