Help for this page

Select Code to Download


  1. or download this
          my $sth = $dbh->prepare("select ... where fld1 = ? and
                                                    fld2 = ? and       
    ...
           $sth->execute($var2, $var2, $var4);
           ...
          }
    
  2. or download this
         for ($i=0; $i<800; $i++){
           ...
    ...
          $sth->execute();
           ...
         }