Help for this page

Select Code to Download


  1. or download this
    my $o=new MyClass;
    my $dbh=$o->opendb;
    ...
    warn $dbh; # the same as the previous line
    undef $o;
    exit;
    
  2. or download this
    sub opendb {
       my $self=shift;
    ...
       $self->{_dbh}->{AutoCommit}=0;   # Lets run transactional
       return $self->{_dbh};
       }