Hi,
I'm using the MySQL built-in C function, mysql_data_seek, for accessing a
particular row from the Result (MYSQL_RES) returned by mysql_store_result.
int sql_result;
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_data_seek(MResult, 1);
row = mysql_fetch_row(MResult);
However, "row" returns NULL. I wonder if I've made any mistake in the
process. Can someone please help to check? In addition, is there any
special considerations when using this function?
Thanks in advance.
wv
---------------------------------------------------------------------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)
To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php