Help for this page

Select Code to Download


  1. or download this
    while (my $row = $sth->fetch_arrayref()) {
       ...
    }
    
  2. or download this
    my $rows = $sth->fetchall_arrayref();
    my $num_rows = @$rows;
    foreach my $row (@$rows) {
       ...
    }
    
  3. or download this
    my $rows = $sth->fetchall_arrayref();
    my $num_rows = @$rows;
    ...
    while (my $row = $sponge_sth->fetch_arrayref()) {
       ...
    }