|
||||
sybperl-l ArchiveUp Prev Next
From: David Hajoglou <hojo at greenland dot i-tel dot com> After much toil over persistant connections, we decided against them for
several reasons. So, now we do per script connection/disconnection. if I
make a var $d the database handle, is this a good or bad way to disconnect
the handle:
my $d=Sybase::DBlib->dblogin($user,$pass,'IRELAND',"");
sub disconnect{
$d = undef;
}
Or is there a better way?
-hojo
|