SQL_FetchRow Function

Fetches a row from the current result set. This must be successfully called before any results are fetched.

If this function fails, SQL_MoreRows() can be used to tell if there was an error or the result set is finished.

bool SQL_FetchRow(Handle query)

Parameters

Handle query

A query (or statement) Handle.

Return Value

True if a row was fetched, false otherwise.

Errors

Invalid query Handle.