[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
mysql_more_results()
my_bool mysql_more_results(MYSQL *mysql)
Returns true if more results exist from the currently executed query,
and the application must call mysql_next_result()
to fetch the
results.
Available from MySQL 4.1.
TRUE
(1) if more results exist. FALSE
(0) if no more results
exist.
Note that in most cases one instead call mysql_next_result()
to
test if more result exists and initiate the next result set if it existed.
See section 19.1.8 C API Handling of Multiple Query Execution.
See section 19.1.3.63 mysql_next_result()
.
None.