Re: mysql_fetch_row blocks my computer...

2001-01-31 Thread Gonzalo Aguilar
> 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]

Re: mysql_fetch_row blocks my computer...

2001-01-24 Thread Jorge del Conde
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