16.01.2013, 08:32
Quote:
Make sure you close the mysql connection after you perform a query statment
|
Check all your queries for mistakes (use mysql_debug(1) to check them), incase you can't find the error and want to brute-force the connection into working you can use something like this in a loop:
pawn Код:
if(!mysql_ping()) {
mysql_connect();
}