Search notes:

Perl Module DBI, select_all* methods

my @rows = @{$dbh -> selectall_arrayref('select id, ipnr from log limit 100')};

for my $row (@rows) {
  print $row->[0], ": ", $row->[1], "\n";
}

See also

selectrow_array, selectcol_arrayref
fetchall_arrayref
Perl module DBI

Index