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
rs.fields = rt.fields
instead of:
while intCounter < rs.fields.count
rs.fields(intCounter) = rt.fields(intCounter)
intCounter = intCounter + 1
wend