How to copy one record set to another in VB

874 views Asked by At

I have a record set, I want to copy its data to another record set.

Dim rsAttributes,LoggedInUserId,rsAttributes1
Set rsAttributes = Server.CreateObject("ADODB.RecordSet")
Set rsAttributes1 = Server.CreateObject("ADODB.RecordSet")
Set rsAttributes = CALL DB TO GET DATA.

Now How can I copy rsAttributes value/data to rsAttributes1 . I tried with CLONE method, but did not work.

0

There are 0 answers