G
Guest
I have a VBA question. In my program, I create a recordset through SQL
(contained in strSQL) as follows:
Set rstSQL = myODBC.OpenRecordset(strSQL)
Now I would like to append the result of this recordset to a table in
Access. Is there an efficient way to do this? For example:
db.INSERT rstSQL into tblResult (obviously this won't work, but it's what I
want!)
Thanks,
George
(contained in strSQL) as follows:
Set rstSQL = myODBC.OpenRecordset(strSQL)
Now I would like to append the result of this recordset to a table in
Access. Is there an efficient way to do this? For example:
db.INSERT rstSQL into tblResult (obviously this won't work, but it's what I
want!)
Thanks,
George