All pages
Powered by GitBook
1 of 1

Loading...

mysql_store_result

Syntax

  • mysql - a mysql handle, which was previously allocated by mysql_init() or mysql_real_connect().

Description

Returns a buffered result set from the last executed query.

mysql_store_result() returns NULL in case an error occurred or if the query didn't return data (e.g. when executing an or query.

indicates if there will be a result set available.

The memory allocated by mysql_store_result() needs to be released by calling the function .

See also

MYSQL_RES * mysql_store_result(MYSQL * mysql);
mysql_field_count()
mysql_free_result()
mysql_use_result()
mysql_real_query()
mysql_field_count()
INSERT
UPDATE