25.2.3.44. mysql_more_results()
my_bool mysql_more_results(MYSQL *mysql)
Description
Returns true if more results exist from the currently executed
query, and the application must call
mysql_next_result() to fetch the results.
Return Values
TRUE (1) if more results exist.
FALSE (0) if no more results exist.
In most cases, you can call
mysql_next_result() instead to test whether
more results exist and initiate retrieval if so.
See Section 25.2.9, “C API Handling of Multiple Query Execution”, and
Section 25.2.3.45, “mysql_next_result()”.
Errors
None.