19.07.2012, 12:49
Hi, can somebody help me by fixing this 2 errors? :
And here are the lines:
pawn Код:
samp03e_svr\gamemodes\Gm.pwn(255) : error 017: undefined symbol "MYSQL_HOST"
samp03e_svr\gamemodes\Gm.pwn(265) : error 017: undefined symbol "MYSQL_HOST"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
pawn Код:
#include <a_mysql>
ConnectMySQL()
{
if(mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_DB, MYSQL_PASS))//line 255
print("[MySQL] Connection to the MySQL Database was successfully!");
else
print("[MySQL] Could not connect to the MySQL Database!");
}
CheckMySQL()
{
if(mysql_ping() == -1)
mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_DB, MYSQL_PASS);//line 265
}