in reply to Re^3: Using Data::Dumper on a MySQL statement handle
in thread Using Data::Dumper on a MySQL statement handle

Thanks for that link. print Dumper($dbh) has almost the same result.
$VAR1 = bless( {}, 'DBConnect::db' );
I am starting to think that Dumper just won't work on DBI.

Replies are listed 'Best First'.
Re^5: Using Data::Dumper on a MySQL statement handle
by kcott (Archbishop) on Nov 10, 2010 at 18:14 UTC

    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