- or download this
sub DESTROY {
my $self=shift;
...
$dbhobject = undef;
}
}
- or download this
sub new {
my $classname = shift;
...
sub DBHOBJ {
return $dbhobject->{"dbh"};
}
- or download this
use Apache::DBI;
sub DBHOBJ {
DBI->connect("DBI:mysql:blah) or
die DBI::errstr;
}