http://www.perlmonks.org?node_id=182058


in reply to Re: DBI specification change
in thread DBI specification change

You can use selectall_arrayref to do this: my $rows = $dbh->selectall_arrayref($sql, {Slice=>{}}); This works in ver 1.20+ I think

Hope this helps...

gav^