GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
mysql_store_result(3) MariaDB Connector/C mysql_store_result(3)

mysql_store_result - returns a buffered result set


#include <mysql.h>
MYSQL_RES * mysql_store_result(MYSQL * mysql);

    

Returns a buffered resultset from the last executed query. ### Notes
mysql_field_count() (imysql_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(3).

mysql is a connection identifier, which was previously allocated by mysql_init(3) and connected by mysql_real_connect(3).

Returns a buffered result set or NULL in case an error occured or if the query didn’t return data (e.g. when executing an INSERT, UPDATE, DELETE or REPLACE statement). ## See also * mysql_free_result(3) * mysql_use_result(3) * mysql_real_query(3) * mysql_field_count(3)
Version 3.2.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.