Deep Copy or Clone an ADODB recordset in VBA
问题 I have been searching for a way of duplicating or copying a recordset in VBA. And by that I mean, having the undelying data independent of each other. I have tried Set copyRS = origRS.Clone Set copyRS = origRS When I use any of the methods I cant modify one recordset without modifying the other. So in this example: I create a recordset I populate the recordset with the name John I clone the recordset I modify the cloned one Check result Code: Dim origRS As Recordset, copyRS As Recordset Set