Im using a Adodb connection and reading the result of a query into an array with
array = recordSet.GetRows()
which leads to a transposed array of dimensions
(row,col)
(0, 0)
(0, 1)
(0, 2)
instead of
(row,col)
(0, 0)
(1, 0)
(2, 0)
so it should be a 3 x 1 not 1 x 3 array Any suggestions ?
It is because it is returning an Array containing (intField, intRecord):
https://msdn.microsoft.com/en-us/library/office/ff194427.aspx
So it's a matter of different interpretation in the way that intField is basically the Column and intRecord the Row (both zero-based).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With