Thanks,
Don
Sent via Deja.com http://www.deja.com/
Before you buy.
It already is an array: the collection. However, you can do the following to
access elements:
# Get the name of the second field; first index is 0
$recordset->Fields(1)->{Name};
# Get the value of the field named "Country"
$recordset->Fields('Country')->{Value};
Then you can just dump it into arrays that way or you might use the built-in
Perl map-function to do it or you can use the GetRows() method of the
recordset to return a two dimensional array representing the fields.
--
Tobias