Help for this page

Select Code to Download


  1. or download this
    sub new_dbh {
        ....
    ...
        Check other stuff, etc
    
    }
    
  2. or download this
    $dbh = new_dbh({host=>'blablah'},{AutoCommit=>1});
    $customer_handle="fred";
    my $sth = $dbh->prepare(qq{select id from customer where handle=?});
    $sth->execute($customer_handle);