Copy ADO RST to ACCESS TABLE (MDB)

G

Greg Franke

I need to copy an ADO recordset to an Access Table.
How can this be done?

Thanks!
 
D

Douglas J Steele

I think the only way is to loop through the recordset row-by-row, and then
either append it to a second recordset opened on the table, or else generate
an INSERT statement and run the SQL.
 
Top