I'm assuming you want to use a recordset as a container for your data, but without it being associated with any data source? If so what you need to do is first add some fields to it, using rs.Fields.Append("Name", Type, Size, Properties) then you can call rs.Open, and finally you add data to it using the AddNew method and then assign values to the fields.
Is that what you're looking for?
|