in reply to Re^2: Getting Record Set via DBI into an Array of Arrays
in thread Getting Record Set via DBI into an Array of Arrays

Sorry, was tired. I meant
while (my $row = $sth->fetch()){ push @{ $data[0] }, $row->[0]; push @{ $data[1] }, $row->[1]; }
My code would have given you a compile-time error had you used use strict;.