- or download this
my $dbh = shift ||' ';
my $sth = shift ||' ';
...
$sth->finish() if $sth;
$dbh->disconnect() if $dbh;
- or download this
my $dbh = shift;
my $sth = shift;
...
} else {
' '->diconnect(); # RUNTIME ERROR
}
- or download this
my $dbh = shift;
my $sth = shift;
...
$sth->finish() if $sth;
$dbh->disconnect() if $dbh;