16.01.2014, 06:38
here is my code
why i cannot get the next row data?
How should i get it?
Код:
public OnQueryFinish(query[], resultid, extraid, connectionHandle)
{
if(resultid == CreateTask)
{
new result[100], result2[100];
printf(query);
mysql_store_result();
mysql_fetch_row_format(result, " ");
printf("result:%s",result);
while(mysql_retrieve_row())
{
mysql_store_result();
mysql_fetch_row_format(result2, " ");
printf("result:%s",result2);
}
mysql_free_result();
}
return 1;
}
How should i get it?



