in reply to Re^4: Loader script - Design question
in thread Loader script - Design question

See selectall_arrayref

my $ar = $dbh->selectall_arrayref( 'SELECT * FROM table', { Slice => {} } ); print Dumper $ar;
poj

Replies are listed 'Best First'.
Re^6: Loader script - Design question
by artanisace (Initiate) on Feb 23, 2016 at 14:18 UTC

    Thank you very much, that's what I was searching for! Appreciate it :)