have some problems with mysql
#1

well, I'm making vehicle system in mysql, I get errors, I don't know what its wrong
pawn Код:
forward ResetCarFromDataBase(id);
public ResetCarFromDataBase(id)
{
    new sql[100];
    format(sql, sizeof sql, "INSERT INTO `vehicles` (`CID`) VALUE (%d)",id);
    mysql_query(sql,THREAD_ignoreCallback,id, mysqlCon);
    return 1;
}
forward LoadCarsFromDataBase(id);
public LoadCarsFromDataBase(id)
{
        new rows, fields;
        cache_get_data(rows, fields);
        if(rows != 1)
        {
            ResetCarFromDataBase(id);
        }
        else
        {
            new temp[64];
            cache_get_row(0,0, Cars[id][cDescription]);
            cache_get_row(0,1, Cars[id][cOwner]);
            cache_get_row(0,2, Cars[id][cPos]);
            cache_get_row(0,3, temp);
            Cars[id][cX] = strval(temp);
            cache_get_row(0,4, temp);
            Cars[id][cY] = strval(temp);
            cache_get_row(0,5, temp);
            Cars[id][cZ] = strval(temp);
            cache_get_row(0,6, temp);
            Cars[id][cAngle] = strval(temp);
            cache_get_row(0,7, temp);
            Cars[id][cTempX] = strval(temp);
            cache_get_row(0,8, temp);
            Cars[id][cTempY] = strval(temp);
            cache_get_row(0,9, temp);
            Cars[id][cTempZ] = strval(temp);
            cache_get_row(0,10, temp);
            Cars[id][cTempAngle] = strval(temp);
            cache_get_row(0,11, temp);
            Cars[id][cOwned] = strval(temp);
            cache_get_row(0,12, temp);
            Cars[id][cPrice] = strval(temp);
            cache_get_row(0,13, temp);
            Cars[id][cLocked] = strval(temp);
            cache_get_row(0,14, temp);
            Cars[id][ccLocked] = strval(temp);
            cache_get_row(0,15, temp);
            Cars[id][cModel] = strval(temp);
            cache_get_row(0,16, temp);
            Cars[id][cCol1] = strval(temp);
            cache_get_row(0,17, temp);
            Cars[id][cCol2] = strval(temp);
            cache_get_row(0,18, temp);
            Cars[id][cFuel] = strval(temp);
            cache_get_row(0,19, Cars[id][cPlate]);
            if(Cars[id][cModel] !=0 && strlen(Cars[id][cDescription]) !=0)
            {
                if(Cars[id][cModel] == 538)
                {
                Cars[id][ownedvehicle] = AddStaticVehicle(Cars[id][cModel],Cars[id][cX],Cars[id][cY],Cars[id][cZ],Cars[id][cAngle],Cars[id][cCol1],Cars[id][cCol2]);
                }
                else
                {
                Cars[id][ownedvehicle] = CreateVehicle(Cars[id][cModel],Cars[id][cX],Cars[id][cY],Cars[id][cZ],Cars[id][cAngle],Cars[id][cCol1],Cars[id][cCol2],180);
                }
                SetVehicleNumberPlate(id,Cars[id][cPlate]);
            }
        }
        return 1;
}
forward LoadCars();
public LoadCars()
{
    new sql[1000];
    for(new id=1;id<sizeof(Cars);id++)
    {
    format(sql,1000,"SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = %d",id);
    mysql_function_query(mysqlCon, sql, true, "LoadCarsFromDataBase", "d", id);
    }
    return 1;
}
errors:
Код:
[16:18:52] Number of vehicle models: 0
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 1
[16:18:52] 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 '= 1' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 2
[16:18:52] 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 '= 2' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 3
[16:18:52] 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 '= 3' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 4
[16:18:52] 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 '= 4' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 5
[16:18:52] 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 '= 5' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 6
[16:18:52] 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 '= 6' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 7
[16:18:52] 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 '= 7' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 8
[16:18:52] 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 '= 8' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 9
[16:18:52] 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 '= 9' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 10
[16:18:52] 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 '= 10' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 11
[16:18:52] 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 '= 11' at line 1
[16:18:52] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 12
[16:18:52] 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 '= 12' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 13
[16:18:53] 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 '= 13' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 14
[16:18:53] 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 '= 14' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 15
[16:18:53] 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 '= 15' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 16
[16:18:53] 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 '= 16' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 17
[16:18:53] 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 '= 17' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 18
[16:18:53] 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 '= 18' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 19
[16:18:53] 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 '= 19' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 20
[16:18:53] 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 '= 20' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 21
[16:18:53] 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 '= 21' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 22
[16:18:53] 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 '= 22' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 23
[16:18:53] 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 '= 23' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 24
[16:18:53] 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 '= 24' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 25
[16:18:53] 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 '= 25' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 26
[16:18:53] 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 '= 26' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 27
[16:18:53] 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 '= 27' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 28
[16:18:53] 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 '= 28' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 29
[16:18:53] 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 '= 29' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 30
[16:18:53] 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 '= 30' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 31
[16:18:53] 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 '= 31' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 32
[16:18:53] 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 '= 32' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 33
[16:18:53] 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 '= 33' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 34
[16:18:53] 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 '= 34' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 35
[16:18:53] 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 '= 35' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 36
[16:18:53] 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 '= 36' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 37
[16:18:53] 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 '= 37' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 38
[16:18:53] 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 '= 38' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 39
[16:18:53] 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 '= 39' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 40
[16:18:53] 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 '= 40' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 41
[16:18:53] 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 '= 41' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 42
[16:18:53] 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 '= 42' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 43
[16:18:53] 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 '= 43' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 44
[16:18:53] 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 '= 44' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 45
[16:18:53] 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 '= 45' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 46
[16:18:53] 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 '= 46' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 47
[16:18:53] 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 '= 47' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 48
[16:18:53] 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 '= 48' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 49
[16:18:53] 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 '= 49' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 50
[16:18:53] 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 '= 50' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 51
[16:18:53] 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 '= 51' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 52
[16:18:53] 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 '= 52' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 53
[16:18:53] 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 '= 53' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 54
[16:18:53] 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 '= 54' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 55
[16:18:53] 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 '= 55' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 56
[16:18:53] 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 '= 56' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 57
[16:18:53] 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 '= 57' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 58
[16:18:53] 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 '= 58' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 59
[16:18:53] 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 '= 59' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 60
[16:18:53] 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 '= 60' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 61
[16:18:53] 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 '= 61' at line 1
[16:18:53] Something is wrong dunno what, query: SELECT Description,Owner,Pos,X,Y,Z,Angle,cX,cY,cZ,cAngle,Owned,Price,Locked,cLocked,Model,Col1,Col2,Fuel,Plate FROM vehicles WHERE CID LIKE = 62
[16:18:53] 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 '= 62' at line 1
table:
http://i48.tinypic.com/2ajnn8o.jpg
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)