mysql_store_result
Syntax
MYSQL_RES * mysql_store_result(MYSQL * mysql);
mysql
- a mysql handle, which was previously allocated by mysql_init() or mysql_real_connect().
Description
Returns a buffered resultset from the last executed query.
mysql_store_result() returns NULL in case an error occured or if the query didn't return data (e.g. when executing an INSERT or UPDATE query.
mysql_field_count() indicates if there will be a result set available.
The memory allocated by mysql_store_result() needs to be released by calling the function mysql_free_result().
See also
Comments
Comments loading...
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.