Here's what I do:
1. The user enters the Primary Key of a record and clicks on a "search" button.
2. I search for the details of that record using a recordset that will only return that specific record (using the WHERE clause in the SELECT statement).
I need to know the AbsolutePosition (in the table) of the record returned by the recordset. I want to avoid any type of sequential searches because it takes way too much time on a table with a lot of records...
Can I do that?
Thanks...
1. The user enters the Primary Key of a record and clicks on a "search" button.
2. I search for the details of that record using a recordset that will only return that specific record (using the WHERE clause in the SELECT statement).
I need to know the AbsolutePosition (in the table) of the record returned by the recordset. I want to avoid any type of sequential searches because it takes way too much time on a table with a lot of records...
Can I do that?
Thanks...