27.05.2014, 14:14
Assuming the version of the mysql you're using is from the latest versions, the first argument is the connection handle and the second is the query.
pawn Код:
// global:
static SQL = -1;
// connecting:
SQL = mysql_connect(...);
// use of it:
mysql_query(SQL, Query);

