Help for this page

Select Code to Download


  1. or download this
    while (my $ar = $sth->fetch()) {
       my $item = $ar->[0];
       ...
    }
    
  2. or download this
    sub make_sth_iterator {
       my ($sth) = @_;
    ...
    while (my ($item) = $iter->()) {
       ...
    }