chorg says:
> I tried to view a DBI statment handle object.
DBI's internal objects are very weird. You are not supposed to be poking around in them anyway; there is nothing useful to be seen there, unless you are writing your own DBD:: module.

> I got nothing.
You got nothing because there is nothing to get; the object has nothing in it. Data::Dumper will show you the same thing, because that is the truth. A DBI statement handle object is a reference to an empty tied hash.

The hash is tied to an object which is implemented (probably) with another hash that actually contains real member data. You can see this by doing:

x tied %$sth
in the debugger. But I don't really understand what you think you're going to accomplish by looking into the internals of the DBI object---it's unlikely that you will find anything there that you can 'debug'.

For most ordinary objects, you will not have to do this. The x command will do what you want.


In reply to Re: Debugging Complex Structures by Dominus
in thread Debugging Complex Structures by chorg

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.