hier mal der error
SQL
		
			[19:18:12] [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 '' at line 1und der dazugehörige code
SaveCarToDB(playerid,i,modelid)
{
	new query[128];	
	format(query,sizeof(query),"INSERT INTO Spielerautos (BESITZER, MODEL, X, Y, Z, ROTA) VALUES ('%i','%i','%f','%f','%f','%f')",sInfo[playerid][db_id],modelid,cInfo[i][carx],cInfo[i][cary],cInfo[i][carz],cInfo[i][carrota]);
	print(query);
	mysql_function_query(dbhandle,query,false,"","");
	print("Auto gespeichert.");
	return 1;
}
geprintet wird die besitzer id das model x y z rotation coordinaten alles richtig aber es wird nix eingetragen
 
		 
		
		
	