Help for this page

Select Code to Download


  1. or download this
    while (my $row = $sth->fetchrow_arrayref) {
        print @$row, "\n";
    }
    
  2. or download this
    OUTER: while (my $row = $sth->fetchrow_arrayref) {
        INNER: foreach my $column (@$row) {
            next OUTER if($column eq undef);
        }
        print @$row, "\n";
    }