Help for this page

Select Code to Download


  1. or download this
       sub _setup_dbh {
    
    ...
          return $self->{'_dbh'};
    
       }
    
  2. or download this
    sub get_dbh {
    
    ...
       return $self->{'_dbh'};
    
    }
    
  3. or download this
    $dbh = $foo->get_dbh;
    
    $dbh->prepare( "blah blah whatever" )
    
  4. or download this
    sub dbq {
    
    ...
       return $sth;
    
    }
    
  5. or download this
    $dbh = $foo->get_dbh;
    
    $dbh->dbq( "blah blah whatever" );