in reply to Re^4: Using Data::Dumper on a MySQL statement handle
in thread Using Data::Dumper on a MySQL statement handle
I would say it's working perfectly fine. I can achieve the same output with that code:
$ perl -wE 'use Data::Dumper; my $dbh = bless {} => q{DBConnect::db}; +print Dumper($dbh);' $VAR1 = bless( {}, 'DBConnect::db' );
But, the real question is: What's your code doing?
-- Ken
|
|---|