What is the current way to move back and forwards and to any position in a
recordset without losing performance


I am testing MySQL

I have 100000 records in a table
Using 


res = mysql_store_result( MYSQL ) ;
        int iRows = (int) mysql_num_rows( res );
        for (i = 0; i < iRows; i++)
        {
                MYSQL_ROW row;

                while (row = mysql_fetch_row(res))
                {



Is very fast

But if I want to use mysql_data_seek() it is very slow



---------------------------------------------------------------------
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

Reply via email to