SA-MP Forums Archive
database 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: database help (/showthread.php?tid=585904)



database help - thomasanderson39 - 17.08.2015

C:\Users\Ah\Desktop\Scripts\ 0.3.7\gamemodes\LRP.pwn(16527) : warning 204: symbol is assigned a value that is never used: "string"
C:\Users\Ah\Desktop\Scripts\ 0.3.7\gamemodes\LRP.pwn(29120) : error 017: undefined symbol "localhost"
C:\Users\Ah\Desktop\Scripts\ 0.3.7\gamemodes\LRP.pwn(29120) : error 017: undefined symbol "bwpVSshMSSWxj5q"
C:\Users\Ah\Desktop\Scripts\ 0.3.7\gamemodes\LRP.pwn(29120) : error 029: invalid expression, assumed zero
C:\Users\Ah\Desktop\Scripts\ 0.3.7\gamemodes\LRP.pwn(29120) : fatal error 107: too many error messages on one line


Re: database help - dominik523 - 17.08.2015

How can we help if there are no codes?


Re: database help - Toxik - 17.08.2015

the hell is hat ?
Quote:

bwpVSshMSSWxj5q




Re: database help - prineside - 17.08.2015

Looks like on line 29120 you tried to set host and password to connect to tatabase and there's something like that:

mysql_connect( localhost, "root", bwp... );

You must wrap those parameters in double quotes:

mysql_connect( "localhost", "root", "bwp..." );


...I guess, since you didn't provide any code