06.05.2010, 11:34
Hey everybody.
I'm using this one MySQL plugin --> http://forum.sa-mp.com/index.php?topic=79352.0
Here's my code:
Everything's work, till i insert Float's. Then, it's not inserted to the table.
Where the problem?
Thanks for help.
I'm using this one MySQL plugin --> http://forum.sa-mp.com/index.php?topic=79352.0
Here's my code:
Код:
new Float:Pozicija[3]; bInfo[sInfo[KiekBendroviu]][bPavadinimas] = Pavadinimas; bInfo[sInfo[KiekBendroviu]][Vadybininkas] = Zaidejas; GetPlayerPos(playerid,Pozicija[0],Pozicija[1],Pozicija[2]); bInfo[sInfo[KiekBendroviu]][bX] = Pozicija[0]; bInfo[sInfo[KiekBendroviu]][bY] = Pozicija[1]; bInfo[sInfo[KiekBendroviu]][bZ] = Pozicija[2]; bInfo[sInfo[KiekBendroviu]][Darbuotojai] = 1; sInfo[BendrovesTelefonoNumeris]++; bInfo[sInfo[KiekBendroviu]][bNumeris] = sInfo[BendrovesTelefonoNumeris]; mysql_real_escape_string(Pavadinimas,Pavadinimas); format(query,1024,"INSERT INTO bendroves (BendrovesID,bPavadinimas,Vadybininkas) VALUES('%d','%s','%s')",sInfo[KiekBendroviu],bInfo[sInfo[KiekBendroviu]][bPavadinimas],bInfo[sInfo[KiekBendroviu]][Vadybininkas]); mysql_query(query);
Where the problem?
Thanks for help.