Help for this page

Select Code to Download


  1. or download this
     
      $lastname = "Smith ";
      $qs = "select * from table where lastname = ? "
    ...
            or die "db error " . DBI->errstr;
      @data = $sth->fetchrow_array;
      print "@data";
    
  2. or download this
    
    #!/usr/local/bin/perl
    ...
    $sth->finish;
    $dbh->commit;
    $dbh->disconnect;