in reply to Re^2: fetchall( )
in thread fetchall( )

The Data::Dumper module is a great way to see what your data structure is like. To print the entire array structure:
use Data::Dumper; my $ref = $sth->fetchall_arrayref(); print Data::Dumper->Dump([$ref], ['*ref']);
-albert