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