Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (Français) » SQL Anywhere Server - Programming » SQL Anywhere Data Access APIs » SQL Anywhere C API reference » sacapi.h

 

sqlany_fetch_next function

Returns the next row from the result set. This function first advances the row pointer and then fetches the data at the new row.

Syntax
sacapi_bool sqlany_fetch_next( a_sqlany_stmt * stmt )
Parameters
  • stmt    A statement object that was executed by sqlany_execute or sqlany_execute_direct.

Returns

1 if the fetch is successful, 0 when the fetch is unsuccessful.

See also