Hallo Community,
wenn ich ne DB-Query ausführe bekomme ich zwar die korrekte Anzahl an Rows zurück,
beim fetch() hört er jedoch nach einer Zeile auf
Hoffe ihr könnt mir helfen, hier mein Code:
if(samp_mysql_query(statement) && samp_mysql_store_result())
{
new num_line;
num_line=samp_mysql_num_rows(); //Korrekte Anzahl
while ((num_line = samp_mysql_fetch_row(line)) > 0) //Bricht nach einem Schleifendurchgang ab
{
format(str, sizeof(str), "Num: %d", num_line);
print(str);
print(line);
if (!strlen(line)) { continue; }
samp_mysql_strtok(col1, "|", line);
samp_mysql_strtok(col2, "|", "");
samp_mysql_strtok(col3, "|", "");
print("..."); //Wird noch ausgegeben
}
}
edit: kann mir niemand helfen?