Help for this page

Select Code to Download


  1. or download this
    use DBI;
    
    ...
        for my $value (@$row) { print "$value " }
        print "\n";
    }
    
  2. or download this
    my $res = $sth->fetchall_arrayref({}); # Returns array ref with result
    + rows which are hash refs.
    
    ...
        print "\n"; 
    }