Help for this page

Select Code to Download


  1. or download this
    my $dbh = DBI->connect(..., {RaiseError => 1});
    my $sth = $dbh->prepare(<<SQL);
    ...
    my $res = $sth->fetchall_arrayref();
    
    print Dumper($res);