mysql_query sends a null-terminated SQL string to the MariaDB server for execution, returning zero on success; use mysql_real_query for binary-safe operation.
query -a null terminated string containing the statement to be performed.
Description
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.
Return Value
Returns zero on success, non zero on failure
For executing multi statements the statements within the null terminated string statements must be separated by a semicolon.