Help for this page

Select Code to Download


  1. or download this
    my $rows = $dbh->selectall_arrayref( $sql, { Slice => {} } );
    
  2. or download this
      foreach my $row ( @$rows ) {
        print $row->{NAME}, "\n";
      }