If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
recordset isn't just array to copy it (unless it's snapshot type).
Dynamic recordset is just pointer to a Table/View Row and there is no sence to copy it. you can create pointer copies , as mach as you need , but why do you need copy of the recordset?
The solution you gave me merely made a copy of the recordset but what I really wanted was to copy all the data represented by the ADO recordset into another table.
I'm currently using a datagrid to display the recordset and I was hoping that I could save all that data into another table represented by another recordset. On top of that, I need to append the data from the first table which is acting as a temporary table into the second table which is the master for all the data.