Help - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help (
/showthread.php?tid=583829)
Help -
anassmaroc - 31.07.2015
PHP код:
mysql_connect(mysql_host,mysql_user,mysql_db,mysql_pass);
/*81 */ if(mysql_ping() == 1)
{
/*83 */ mysql_log(1);
printf("[MySql]: Conexiunea la baza de date [%s] a avut succes!", mysql_db);
}
else
{
printf("[MySql]: Conexiunea la baza de date nu a avut succes!");
}
Код:
C:\Users\Ayoub\Desktop\xD\gamemodes\mere.pwn(81) : error 017: undefined symbol "mysql_ping"
C:\Users\Ayoub\Desktop\xD\gamemodes\mere.pwn(83) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Re: Help -
Inn0cent - 31.07.2015
Change mysql_ping to if(mysql_errno() != 0)
And mysql_log to mysql_log(LOG_ALL, LOG_TYPE_HTML);
Re : Help -
anassmaroc - 31.07.2015
Work ty