in reply to Re: use of DBI perl function fetchall_arrayref
in thread use of DBI perl function fetchall_arrayref

and if you want to be explicit in dereferencing, enclose the references in braces. this sometimes helps increase readability:
# dereferencing an array print @$reference; # EXPLICITLY dereferencing an array print @{$reference};

__________
The trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it.
- Terry Pratchett