12.05.2015, 14:31
The output is 1 by default but using multiply connections could cause an issue.
However, I strongly recommend you to use threaded queries and R39-3 because non-threaded queries are still slower.
pawn Код:
// global:
static gMySQL = -1;
// gamemode init:
gMySQL = mysql_connect(...);
// gamemode exit:
mysql_close(gMySQL);
...
mysql_query(gMySQL, query);