in reply to
Re: Passing a database connection
in thread
Passing a database connection
Actually
$dbh = $_[0];
or
($dbh) = @_;
or
$dbh = shift(@_);
or
$dbh = shift;
but yes.
Comment on
Re^2: Passing a database connection
Select
or
Download
Code
In Section
Seekers of Perl Wisdom