03.03.2012, 21:57
Si es que tienes todos los plugins como dice the_chaoz intentб asн:
Porque nunca se checkea con mysql_connect en una condiciуn, justamente hay una funciуn especнfica para checkear si se conectу correctamente y esa funciуn es mysql_ping, espero que te sirva, saludos.
pawn Код:
ConnectMySQL()
{
mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_DB, MYSQL_PASS);
if(mysql_ping() == 1)
{
print("Conectado con йxito!");
return 1;
}
else
{
print("Error al conectarse, volviendo a intentar");
mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_DB, MYSQL_PASS);
if(mysql_ping()==1)
{
print("Conectado con йxito!");
return 1;
}
else
{
print("Conexiуn fallida!");
return 0;
}
}
}