Help for this page

Select Code to Download


  1. or download this
      my $sth = $dbh->prepare(qq{SELECT ....}) or die "...";
      $sth->execute() or die "...";
      while ( my @row = $sth->fetchrow_array() ) {
          ...
      }