Give this a try. It will create a multi-dimentional array from the record set.
Code:
Dim recordSet, CollectedData
'allcode to populate the recordSet variable ...
CollectedData = recordSet.GetRows();
'Now access the data like this:
CollectedData[column][row]
Comment