vote up 0 vote down star

I there a simple way to append a new field to an existing open ADO RecordSet?

fields.append() won't work if the RecordSet is open, and closing appears to kill the existing data.

NB: I'm using Microsoft ActiveX DataObject 2.8 Library

flag

1 Answer

vote up 2 vote down check

You can't append fields to a recordset while it's open.

You can create a clone of the recordset, append your required fields, open it and copy the data from the original.

The other option is to persist the recordset as xml, modify the rowset schema, add required fields & then load xml into a new recordset.

link|flag
Thanks Mitch. When you say Clone i'm assuming you mean iterate through fields() rather than using rs.clone. Is that correct? From memory rs.clone only creates a pointer to your original recordset. – Mark Nold Oct 6 '08 at 0:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.