SQLFetch function

Fetches the next row from a result set and returns data for all bound columns, for UltraLite ODBC.

Syntax
UL_FN_SPEC SQLRETURN UL_FN_MOD SQLFetch (
SQLHSTMT StatementHandle );
Parameters
  • StatementHandle   A statement handle.

Remarks

Before fetching rows, you must have bound the columns in the result set to buffers using SQLBindCol. To fetch a row other than the next row in the result set, use SQLFetchScroll.

See also