Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^4: Using Data::Dumper on a MySQL statement handle

by Anonymous Monk
on Nov 10, 2010 at 18:07 UTC ( [id://870637]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://870637]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-25 20:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found