Have you tried turning on DBI's tracing capabilities? DBI provides several different trace levels. You can control tracing with DBI->trace( 1-4[, "logfilename"] );. You can also trace per handle, but you won't need to do that here. By default, the trace output will go to dbitrace.log. You can also set the logfile name and trace level via the environment variable $DBI_TRACE.

DBI_TRACE value     Effect
1                   DBI->trace(1);  # legal values: 0-4
mytracefile.name    DBI->trace(2, 'mytracefile.name');
3=logfile.txt       DBI->trace(3, 'logfile.txt');

Trace Levels        Effect
0                   Off
1                   Trace method execution inc returned values and errors
2                   1 + method entry & parameters
3                   2 + more internal trace info
4                   3 + the kitchen sink

In reply to Re: Problem with oracle hextoraw function by virtualsue
in thread Problem with oracle hextoraw function by kamesh3183

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.