MySQL Error Log (Was will es?)

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • stock SaveOnlyOneFveh(fv)
    {
    new mainquery[1024],query[1024];
    if(Fahrzeug[fv][modelid] != 0)
    {
    GetVehiclePos(Fahrzeug[fv][Vehicle],Fahrzeug[fv][posx],Fahrzeug[fv][posy],Fahrzeug[fv][posz]);
    GetVehicleHealth(Fahrzeug[fv][Vehicle],Fahrzeug[fv][HP]);
    format(query,sizeof(query),"UPDATE "#SQL_TAG"_fraktion_vehicles SET Fraktion='%d',Rang='%d',modelid='%d',Farbe1='%d',Farbe2='%d',Paintjob='%d',HP='%f',posx='%f',posy='%f',posz='%f',posa='%f',Abgeschlossen='%d',Abgeschleppt='%d',Interior='%d',VirtualWorld='%d',",
    Fahrzeug[fv][Fraktion],Fahrzeug[fv][FraktionsRang],Fahrzeug[fv][modelid],Fahrzeug[fv][Colour1],Fahrzeug[fv][Colour2],Fahrzeug[fv][Paintjob],Fahrzeug[fv][HP],Fahrzeug[fv][posx],Fahrzeug[fv][posy],Fahrzeug[fv][posz],Fahrzeug[fv][posa],Fahrzeug[fv][Abgeschlossen],vFahrzeug[Fahrzeug[fv][Vehicle]][Abgeschleppt],Fahrzeug[fv][Interior],Fahrzeug[fv][VirtualWorld]);
    strcat(mainquery,query);
    format(query,sizeof(query),"AbgeschlepptPreis='%d',AbgeschlepptGrund='%s',Nummernschild='%s',Neon='%d',Spoiler='%d',Hood='%d',Roof='%d',Sideskirt='%d',Lamps='%d',Nitro='%d',Exhaust='%d',Wheels='%d',Stereo='%d',Hydraulics='%d',FrontBumper='%d',RearBumper='%d',VentRight='%d',VentLeft='%d',",
    vFahrzeug[Fahrzeug[fv][Vehicle]][AbgeschlepptPreis],vFahrzeug[Fahrzeug[fv][Vehicle]][AbgeschlepptGrund],Fahrzeug[fv][Nummernschild],vFahrzeug[Fahrzeug[fv][Vehicle]][Neon],Fahrzeug[fv][Hood],Fahrzeug[fv][Roof],Fahrzeug[fv][Sideskirt],Fahrzeug[fv][Lamps],Fahrzeug[fv][Nitro],Fahrzeug[fv][Exhaust],Fahrzeug[fv][Wheels],
    Fahrzeug[fv][Stereo],Fahrzeug[fv][Hydraulics],Fahrzeug[fv][FrontBumper],Fahrzeug[fv][RearBumper],Fahrzeug[fv][VentRight],Fahrzeug[fv][VentLeft]);
    strcat(mainquery,query);
    format(query,sizeof(query),"KaufPreis='%d',Motorschaden='%d',FailGas='%d',Tank='%f',Kilometerstand='%d',KofferraumGanja='%d',KofferraumKokain='%d',KofferraumMaterials='%d',KofferraumOpium='%d',KofferraumSpice='%d',KofferraumLunchpakete='%d',KofferraumC4='%d',KofferraumWerkzeugkasten='%d',KofferraumBenzinkanister='%d',Handbremse='%d' WHERE id='%d'",
    Fahrzeug[fv][Preis],MotorDown[Fahrzeug[fv][Vehicle]],vFahrzeug[Fahrzeug[fv][Vehicle]][FailGas],vFahrzeug[Fahrzeug[fv][Vehicle]][Tank],vFahrzeug[Fahrzeug[fv][Vehicle]][Kilometer],vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumGanja],vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumKokain],vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumMaterials],
    vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumOpium],vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumSpice],vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumLunchpakete],vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumC4],vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumWerkzeugkasten],vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumBenzinkanister],vFahrzeug[Fahrzeug[fv][Vehicle]][Handbremse],Fahrzeug[fv][Carkey]);
    strcat(mainquery,query);
    mysql_function_query(MySqlConnection,mainquery,false,"","");
    strdel(mainquery,0,sizeof(mainquery));
    strdel(query,0,sizeof(query));
    printf("SERVER » Fraktionsfahrzeug %d gespeichert",fv);
    }
    return 1;
    }


  • Du zeigst uns den Code, den du zum speichern verwendest, der Fehler tritt aber beim laden auf ^^


    #Handy

    ast2ufdyxkb1.png


    Leute, lernt scripten und versucht mal lieber etwas selber zu schreiben, als es aus einem GF zu kopieren. :S

  • case _SQL_FVEH_LOAD:
    {
    cache_get_data(rows,fields);
    new fv = 0;
    if(rows)
    {
    while(fv<=rows)
    {
    cache_get_field_content(fv,"id",result);
    Fahrzeug[fv][Carkey] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Fraktion",result);
    Fahrzeug[fv][Fraktion] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"modelid",result);
    Fahrzeug[fv][modelid] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Farbe1",result);
    Fahrzeug[fv][Colour1] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Farbe2",result);
    Fahrzeug[fv][Colour2] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Paintjob",result);
    Fahrzeug[fv][Paintjob] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"HP",result);
    Fahrzeug[fv][HP] = floatstr(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"posx",result);
    Fahrzeug[fv][posx] = floatstr(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"posy",result);
    Fahrzeug[fv][posy] = floatstr(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"posz",result);
    Fahrzeug[fv][posz] = floatstr(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"posa",result);
    Fahrzeug[fv][posa] = floatstr(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Abgeschlossen",result);
    Fahrzeug[fv][Abgeschlossen] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Interior",result);
    Fahrzeug[fv][Interior] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"VirtualWorld",result);
    Fahrzeug[fv][VirtualWorld] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Nummernschild",result);
    strmid(Fahrzeug[fv][Nummernschild],result,0,strlen(result),64);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Spoiler",result);
    Fahrzeug[fv][Spoiler] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Wheels",result);
    Fahrzeug[fv][Wheels] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Nitro",result);
    Fahrzeug[fv][Nitro] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Roof",result);
    Fahrzeug[fv][Roof] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Hood",result);
    Fahrzeug[fv][Hood] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Sideskirt",result);
    Fahrzeug[fv][Sideskirt] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Lamps",result);
    Fahrzeug[fv][Lamps] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Exhaust",result);
    Fahrzeug[fv][Exhaust] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Stereo",result);
    Fahrzeug[fv][Stereo] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Hydraulics",result);
    Fahrzeug[fv][Hydraulics] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"VentRight",result);
    Fahrzeug[fv][VentRight] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"VentLeft",result);
    Fahrzeug[fv][VentLeft] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"FrontBumper",result);
    Fahrzeug[fv][FrontBumper] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"RearBumper",result);
    Fahrzeug[fv][RearBumper] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"KaufPreis",result);
    Fahrzeug[fv][Preis] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"FraktionsRang",result);
    Fahrzeug[fv][FraktionsRang] = strval(result);
    strdel(result,0,sizeof(result));
    Fahrzeug[fv][Vehicle] = CreateVehicleEx(Fahrzeug[fv][modelid],Fahrzeug[fv][posx],Fahrzeug[fv][posy],Fahrzeug[fv][posz],Fahrzeug[fv][posa],Fahrzeug[fv][Colour1],Fahrzeug[fv][Colour2],-1);
    SetVehicleNumberPlate(Fahrzeug[fv][Vehicle],Fahrzeug[fv][Nummernschild]);
    cache_get_field_content(fv,"Abgeschleppt",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][Abgeschleppt] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"AbgeschlepptPreis",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][AbgeschlepptPreis] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"AbgeschlepptGrund",result);
    strmid(vFahrzeug[Fahrzeug[fv][Vehicle]][AbgeschlepptGrund],result,0,strlen(result),128);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Neon",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][Neon] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Motorschaden",result);
    MotorDown[Fahrzeug[fv][Vehicle]] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"FailGas",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][FailGas] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Tank",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][Tank] = floatstr(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Kilometerstand",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][Kilometer] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"KofferraumGanja",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumGanja] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"KofferraumKokain",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumKokain] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"KofferraumMaterials",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumMaterials] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"KofferraumOpium",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumOpium] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"KofferraumSpice",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumSpice] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"KofferraumLunchpakete",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumLunchpakete] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"KofferraumC4",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumC4] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"KofferraumWerkzeugkasten",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumWerkzeugkasten] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"KofferraumBenzinkanister",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][KofferraumBenzinkanister] = strval(result);
    strdel(result,0,sizeof(result));
    cache_get_field_content(fv,"Handbremse",result);
    vFahrzeug[Fahrzeug[fv][Vehicle]][Handbremse] = strval(result);
    strdel(result,0,sizeof(result));
    FVehicleTuning(fv);
    fv++;
    }
    }
    printf("SERVER » Fraktionsfahrzeuge geladen %i/%i",rows,MAX_FVEHS);
    return 1;
    }