syntax error in the expression, or invalid function call - 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: syntax error in the expression, or invalid function call (
/showthread.php?tid=616730)
syntax error in the expression, or invalid function call -
CarRamper - 09.09.2016
Script Code
Код:
case LOS_SANTOS:
{
format(string, sizeof(string), "UPDATE server SET Gamemode = '%d' WHERE Server = '1'",LAS_VENTURAS);
mysql_query,strval(string);ERROR LINE THIS
}
Error
Код:
syntax error in the expression, or invalid function call
Re: syntax error in the expression, or invalid function call -
Gammix - 09.09.2016
pawn Код:
mysql_query,strval(string);
This is a meaningless line of code.
I guess you are trying to run a mysql query:
pawn Код:
mysql_tquery(connectionHandle, string, "", "");
**
connectionHandle is your mysql connection handle id.