> That syntax seems correct. Make sure you have defined Row as:
> MYSQL_ROW Row;
Yes this is a structure, not a pointer.
> and that result is defined as
> MYSQL_RES *result;
Yes it is a pointer.
>
> printf("\n\t%u %4s",j,Row); <---YOUR problem seems to be here! change
> Row to Row[0]
Hi,
>Row = mysql_fetch_row(result); < Here is the problem
That syntax seems correct. Make sure you have defined Row as:
MYSQL_ROW Row;
and that result is defined as
MYSQL_RES *result;
printf("\n\t%u %4s",j,Row); <---YOUR problem seems to be here! change
Row to Row[0] and see if