Help for this page

Select Code to Download


  1. or download this
    while(my $rr = $sth->fetchrow_hashref()) {
        print "$_: $rr->{$_}\n" for keys %$rr;
    }
    
  2. or download this
    while(my @rows = $sth->fetchrow_array()) {
        print "Values: @rows\n";
    }
    
  3. or download this
    while(my @rows = $sth->fetchrow_array()) {
        print "$_: $rows\n" for @rows;
    }