SA-MP Forums Archive
mysql_query - 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_query (/showthread.php?tid=355015)



mysql_query - iFederal - 28.06.2012

while having this code:
pawn Код:
CreateClan(toplayer,name[],shortname[])
{
    new string[256];
    format(string,sizeof(string),"INSERT INTO clans (name, shortname) VALUES ('%s','%s')",name,shortname);
    mysql_query(string);
    mysql_store_result();
    new id = mysql_insert_id();
    PlayerInfo[toplayer][pClan] = id;
    PlayerInfo[toplayer][pClanRank] = 3;
    LoadClan(id);
    mysql_free_result();
    return id;
}
I had this error
Undefined Symbol mysql_query