SA-MP Forums Archive
MySQL plugin by BlueG - 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 plugin by BlueG (/showthread.php?tid=584111)



MySQL plugin by BlueG - LocMax - 02.08.2015

So I've been converting my gamemode from strickenkid's MySQL to the newest version of BlueG's plugin, however there's an error:
"[15:41:38] [ERROR] CMySQLConnection::Connect - (error #2005) Unknown MySQL server host 'MYSQL_HOST'"

#define MYSQL_HOST "127.0.0.1"

The database is located on the same host as the server, it was working properly with strickenkid's MySQL, however now the errors appear.
Any ideas how to resolve this? What are the possible solutions?


Re: MySQL plugin by BlueG - xVIP3Rx - 02.08.2015

You're probably adding it as
pawn Code:
mysql_connect("MYSQL_HOST",..
Remove the '"' around it, like this
[pawn]
mysql_connect(MYSQL_HOST,..