Copy entire record between recordsets

GeoMetry

New member
Local time
Today, 13:48
Joined
Jul 24, 2007
Messages
9
Is there a way to copy an entire record from one recordset to another? I currently loop thru all the fields and it seems inefficient. I would like to do something like:

rs.fields = rt.fields

instead of:

while intCounter < rs.fields.count
rs.fields(intCounter) = rt.fields(intCounter)
intCounter = intCounter + 1
wend
 
thats the way Access works. Why should it be inefficient?
 
Try to do this with APPEND QUERY.
 

Users who are viewing this thread

Back
Top Bottom