Guten Tag Community,
ich möchte die Tuningteile von den Frakcars speichern,aber leider kommt im mysql log immer dieser Fehler und ich werde nicht mehr schlau, da ich alles versucht habe.
[16:10:10] [ERROR] CMySQLQuery::Execute[] - (error #1064) You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'right='0',left='0' WHERE id='16'' at line 1
stock SaveFrakVehicle(frakID)
{
new query[1000];
GetVehiclePos(fvInfo[frakID][fvCar],fvInfo[frakID][fvX],fvInfo[frakID][fvY],fvInfo[frakID][fvZ]);
GetVehicleZAngle(fvInfo[frakID][fvCar],fvInfo[frakID][fvA]);
format(query,sizeof(query),"UPDATE frakcars SET X='%f',Y='%f',Z='%f',A='%f',spoiler='%d',hood='%d',roof='%d',sideskirt='%d',lamps='%d',nitro='%d',exhaust='%d',wheels='%d',stereo='%d',hydraulics='%d',front='%d',rear='%d',right='%d',left='%d' WHERE id='%d'",
fvInfo[frakID][fvX],fvInfo[frakID][fvY],fvInfo[frakID][fvZ],fvInfo[frakID][fvA],fvInfo[frakID][fvspoiler],fvInfo[frakID][fvhood],fvInfo[frakID][fvroof],fvInfo[frakID][fvsideskirt],fvInfo[frakID][fvlamps],fvInfo[frakID][fvnitro],fvInfo[frakID][fvexhaust],fvInfo[frakID][fvwheels],fvInfo[frakID][fvstereo],fvInfo[frakID][fvhydraulics],fvInfo[frakID][fvfrontbumper],fvInfo[frakID][fvrearbumper],fvInfo[frakID][fvventright],fvInfo[frakID][fvventleft],fvInfo[frakID][fcID]);
mysql_function_query(MYSQLConnect,query,false,"","");
return 1;
}
Ich hoffe jemand kann mir helfen
MfG
Master