int mysql_real_query(MYSQL * mysql, const char * q, unsigned long);
mysql - a mysql handle, which was previously allocated by mysql_init() or mysql_real_connect().
mysql
query - a string containing the statement to be performed.
query
long - length of the string.
long
mysql_real_query() is a binary-safe function for executing a statement on the database server. Returns zero on success, otherwise non-zero.
mysql_real_query()
Contrary to the mysql_query() function, mysql_real_query is binary safe.
mysql_real_query
To determine if mysql_real_query returns a result set, use the mysql_num_fields() function.
mysql_query()
mysql_num_fields()
mysql_use_result()
mysql_store_result()
Last updated 6 months ago
Was this helpful?