Is the following possible and if so how?
Construct a ADO recordset containing one field (ID, numeric) and use this as a FILTER for another recordset. That means I want the second recordset to contain only those records with a matching record in the first recordset.
I could modify the SQL directly but there are specific reasons that I don’t want to do that (if I can avoid doing so) in this instance. I also would rather not (for performance) loop through the first recordset and construct the second recordset as a disconnected set.
Thanks.