-
Notifications
You must be signed in to change notification settings - Fork 256
mysql_eof
Georg Richter edited this page Jun 11, 2021
·
1 revision
mysql_eof - determines if the last row of a result set has been read
#include <mysql.h>
my_bool mysql_eof(MYSQL_RES *result);
Determines if the last row of a result set has been read.
Notes:
- This function is deprecated and will be removed. Instead determine the end of a result set by checking return value of mysql_fetch_row().
- If a result set was acquired by mysql_store_result() mysql_eof will always return true.
Returns true if the entire result set was read.
MariaDB Connector/C Reference