16.01.2014, 07:56
pawn Код:
mysql_store_result(); // store result once, before processing
while(mysql_fetch_row_format(result2, " ")) // Are you sure you're using a space as delimiter?
{
printf("result: %s", result2);
}
mysql_free_result(); // free result once, after processing