Help for this page

Select Code to Download


  1. or download this
    # I want to write this:
    my @rows = @{ $dbh->selectall_arrayref($sql) };
    ...
    my $rows_aref = $dbh->selectall_arrayref($sql) or die;
    print Dumper $rows_aref;
    my @rows = @{$rows_aref};