MYSQL 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: MYSQL help (
/showthread.php?tid=583779)
MYSQL help - TheLegend1 - 30.07.2015
Hello guys.
i am having a problem with mysql.
Defined mysql
PHP код:
#define MYSQL_HOST "localhost:0808"
#define MYSQL_USER "11799_bmrp"
#define MYSQL_PASS "n4Shg2z2"
#define MYSQL_DB "11799_bmrp"
Here is error
Код HTML:
(13531) : error 017: undefined symbol "mysql_host"
Line 13531
PHP код:
forward mysql_start();
public mysql_start()
{
mysql_debug(1);
if (mysql_connect(mysql_host, mysql_user, mysql_database, mysql_password))
{
print("[MYSQL] Connection successful!");
}
else
{
print("[MYSQL] There was an error connecting to the MYSQL server");
IRC_GroupSay(gGroupID, "IRC_Channel", "[MYSQL] There was an error connecting to the MYSQL server");
}
return 1;
}
Re: MYSQL help -
TheSnaKe - 30.07.2015
Not sure, but i think you should write them with capital letters like the way you defined them.
PHP код:
if (mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_DATABASE, MYSQL_PASSWORD))
Re: MYSQL help - TheLegend1 - 30.07.2015
PHP код:
13531) : error 017: undefined symbol "MYSQL_DATABASE"
Re: MYSQL help - TheLegend1 - 30.07.2015
Fixed thanks for helping