#gelöst [MySQL] Es werden nicht alle Row's geladen...

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
  • Hallo Breadfish Community,


    ich arbeite gerade an einem Haussystem, doch es wird nur das erste Haus geladen und
    ich weiß nicht wieso...





  • Der Cache scheint durch das updateHaus gelöscht zu werden.
    Versuche es so:
    forward OnHausesLoad();
    public OnHausesLoad()
    {
    new num_fields,num_rows,str[128];
    cache_get_data(num_rows,num_fields,Handle);
    if(!num_rows)return 1;
    for(new i=0; i<num_rows; i++)
    {
    new hid=getFreeHausID();
    hInfo[hid][h_id]=cache_get_field_content_int(i,"id",Handle);
    hInfo[hid][h_x]=cache_get_field_content_float(i,"h_x",Handle);
    hInfo[hid][h_z]=cache_get_field_content_float(i,"h_z",Handle);
    hInfo[hid][h_y]=cache_get_field_content_float(i,"h_y",Handle);
    hInfo[hid][ih_x]=cache_get_field_content_float(i,"ih_x",Handle);
    hInfo[hid][ih_z]=cache_get_field_content_float(i,"ih_z",Handle);
    hInfo[hid][ih_y]=cache_get_field_content_float(i,"ih_y",Handle);
    hInfo[hid][h_besitzer]=cache_get_field_content_int(i,"h_besitzer",Handle);
    hInfo[hid][h_interior]=cache_get_field_content_int(i,"h_interior",Handle);
    hInfo[hid][h_preis]=cache_get_field_content_int(i,"h_preis",Handle);
    hInfo[hid][h_lock]=cache_get_field_content_int(i,"h_lock",Handle);
    format(str, sizeof(str), "Haus(ID: %i) geladen. (X: %f | Y: %f | Z: %f | HID: %i )",hInfo[hid][h_id],hInfo[hid][h_x],hInfo[hid][h_y],hInfo[hid][h_z],hid);
    print(str);
    }
    for(new i=0; i<num_rows; i++) updateHaus(i);
    return 1;
    }

  • OMG... Du bist ein Genie. Danke dir so sehr ♥


    Funktionier so:


    Der Cache scheint durch das updateHaus gelöscht zu werden.
    Versuche es so:
    forward OnHausesLoad();public OnHausesLoad(){ new num_fields,num_rows,str[128]; cache_get_data(num_rows,num_fields,Handle); if(!num_rows)return 1; for(new i=0; i<num_rows; i++) { new hid=getFreeHausID(); hInfo[hid][h_id]=cache_get_field_content_int(i,"id",Handle); hInfo[hid][h_x]=cache_get_field_content_float(i,"h_x",Handle); hInfo[hid][h_z]=cache_get_field_content_float(i,"h_z",Handle); hInfo[hid][h_y]=cache_get_field_content_float(i,"h_y",Handle); hInfo[hid][ih_x]=cache_get_field_content_float(i,"ih_x",Handle); hInfo[hid][ih_z]=cache_get_field_content_float(i,"ih_z",Handle); hInfo[hid][ih_y]=cache_get_field_content_float(i,"ih_y",Handle); hInfo[hid][h_besitzer]=cache_get_field_content_int(i,"h_besitzer",Handle); hInfo[hid][h_interior]=cache_get_field_content_int(i,"h_interior",Handle); hInfo[hid][h_preis]=cache_get_field_content_int(i,"h_preis",Handle); hInfo[hid][h_lock]=cache_get_field_content_int(i,"h_lock",Handle); format(str, sizeof(str), "Haus(ID: %i) geladen. (X: %f | Y: %f | Z: %f | HID: %i )",hInfo[hid][h_id],hInfo[hid][h_x],hInfo[hid][h_y],hInfo[hid][h_z],hid); print(str); } for(new i=0; i<num_rows; i++) updateHaus(i); return 1;}