Wie bekommt man den Fehler weg ?

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
  • MySQL Error (0): Could not execute query. 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 'FROM fraks' at line 1.
    [21:02:42] MySQL Error (0): Function: 'mysql_store_result' called when no prior query executed.. 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 'FROM fraks' at line 1.


    was bedeuten diese fehler ? -.-

    2 Mal editiert, zuletzt von Parto ()

  • public LoadFraks()
    {
    new field[7][40], buffer[512];
    mysql_query("SELECT id,leader,coleader,kasse,earn,lvlearn,coins FROM fraks");
    mysql_store_result();


    if(mysql_num_rows() > 0)
    {
    while(mysql_fetch_row(buffer, "|"))
    {
    split(buffer, field);
    new bid = strval(field[0]);
    format(FI[bid][leader], 33, "%s", field[1]);
    format(FI[bid][coleader], 33, "%s", field[2]);
    FI[bid][kasse] = strval(field[3]);
    FI[bid][earn] = strval(field[4]);
    FI[bid][lvlearn] = strval(field[5]);
    FI[bid][coins] = strval(field[6]);
    }
    }
    print("-> Fractions loaded.");
    mysql_free_result();
    return 1;
    }