Help for this page

Select Code to Download


  1. or download this
    while (my @fields=$sth->fetchrow_array) {
       Do_Stuff(\@fields);
    }
    
  2. or download this
    my $fields = $sth->fetchall_arrayref;