I want to access individual records in a classic ADO recordset without enumerating over the entire recordset using .MoveNext
. I'm aware of using AbsolutePosition
as well as .Filter =
. What's the best way?
More Details: I'm likely going to be accessing the recordset several times pulling out individual records that match a list of records in a particular field. For example, I have a recordset with records that have field values ranging from 1 to 100, I might have a separate array containing just {34, 64, 72}
, and I want to do something to only the records in the recordset whose IDs are contained in the array.