RE: C API: mysql_data_seek

2002-07-10 Thread Chan WieVia ICM N MC MI E3 Extern
was made. Please advice and thanks. wv -Original Message- From: Gelu Gogancea [mailto:[EMAIL PROTECTED]] Sent: 09 July 2002 23:03 To: Chan WieVia ICM N MC MI E3 Extern; [EMAIL PROTECTED] Subject: Re: C API: mysql_data_seek Hi, It's ok but you must retrieve data from row. int sql_result

Re: C API: mysql_data_seek

2002-07-10 Thread Gelu Gogancea
]; [EMAIL PROTECTED] Sent: Wednesday, July 10, 2002 10:13 AM Subject: RE: C API: mysql_data_seek Hi, Thanks for ur reply. When i commented out the mysql_data_seek() function, mysql_fetch_row() returns me a non-NULL value (this should be the first row from the MResult). This results show

RE: C API: mysql_data_seek

2002-07-10 Thread Chan WieVia ICM N MC MI E3 Extern
. Please advice. Once again, thnx for replying. Regards, wv -Original Message- From: Gelu Gogancea [mailto:[EMAIL PROTECTED]] Sent: 10 July 2002 09:38 To: Chan WieVia ICM N MC MI E3 Extern; [EMAIL PROTECTED] Subject: Re: C API: mysql_data_seek Hi, If i understand well you use twice

Re: C API: mysql_data_seek

2002-07-10 Thread Gelu Gogancea
Extern [EMAIL PROTECTED] To: 'Gelu Gogancea' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 10, 2002 11:42 AM Subject: RE: C API: mysql_data_seek Hi Gelu, Thnx for the prompt reply. I called mysql_data_seek() once and I called it before mysql_fetch_row(). With this, mysql_fetch_row

RE: C API: mysql_data_seek

2002-07-10 Thread Chan WieVia ICM N MC MI E3 Extern
-Original Message- From: Gelu Gogancea [mailto:[EMAIL PROTECTED]] Sent: 10 July 2002 11:02 To: Chan WieVia ICM N MC MI E3 Extern; [EMAIL PROTECTED] Subject: Re: C API: mysql_data_seek Hi, If i understand well, mysql_fetch_row() work fine but if you add mysql_data_seek() the row

Re: C API: mysql_data_seek

2002-07-10 Thread Gelu Gogancea
PROTECTED] - Original Message - From: Chan WieVia ICM N MC MI E3 Extern [EMAIL PROTECTED] To: 'Gelu Gogancea' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 10, 2002 3:03 PM Subject: RE: C API: mysql_data_seek Hi Gelu, Yes, you are right in getting my problem. I tried

Re: C API: mysql_data_seek

2002-07-09 Thread Gelu Gogancea
Hi, It's ok but you must retrieve data from row. int sql_result;x,i; MYSQL_RES *MResult; MYSQL_ROW *row; MYSQL *MQuery; char SQLQuery[]; sprintf( SQLQuery, SELECT * FROM Profile ); sql_result = mysql_query(SQLQuery); MResult = mysql_store_result(MQuery);//mysql_store_result return in