Help for this page

Select Code to Download


  1. or download this
    do {
       my $row = $_read_sth->fetchrow_arrayref();
       print Dumper $row;
    } while ($_read_sth->{syb_more_results});
    
  2. or download this
    while (my $row = $_read_sth->fetchrow_arrayref()) {
       print Dumper $row;
    }
    
  3. or download this
    do {
       while (my $row = $sth->$_read_sth->fetchrow_arrayref()) {
          print Dumper $row;
       }
    } while ($_read_sth->{syb_more_results});