mysql_query — performs a query on the database
int mysql_query(MYSQL * mysql,
const char * query);
Performs a statement pointed to by the null terminate string query
against the database. Contrary to mysql_real_query()
mysql_query()
is not binary safe.
mysql
A mysql handle, which was previously allocated by mysql_init()
or mysql_real_connect()
.
query
A null terminated string containing the statement to be performed.
For executing multi statements the statements within the null terminated string statements must be separated by a semicolon. If your statement contains binary data you should use To determine if a statement returned a result set use the function |