Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ADO Recordset Copying/Cloning 1

Status
Not open for further replies.

StormbringerV

Programmer
Nov 21, 2000
15
US
I have a recordset created at form_load() from a database table. The recordset contains roughly 30,000 records. Is there anyway to clone/duplicate the recordset? I really don't want to have to read in the 30,000 records again, but there are some manipulations I'd like to do (searches, etc...) on the clone. Or am I going about this in the wrong way?

Thanks,
Dave
 
ADODataSet2.RecordSet := ADODataSet2.RecordSet;


hope this helps you!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top