Is there a way to stuff a two-dimensional variant array into a recordset, basically the opposite of GetRows? Or do I have to do this (pseudocode):
Code:
Set Rs = New ADODB.Recordset
Rs.Fields.Append Name1, Type, Length
Rs.Fields.Append Name2, Type, Length
Rs.Open
For LBound(Array) To UBound(Array)
Rs.AddNew
For Each Fld in Rs.Fields
Fld.Value = Array(Rs.AbsolutePosition, Fld.<Index>)
Next
Rs.Update
Next