hi all,

I've got a subroutine that uses a couple of eval's to determine where to store a certain piece of information. I've got a hash, $tmp_record and use a join to determine where in the bowels of that hash the value is stored. The variable storing the array for the path is complex, but here is the gist of it:

my $code_to_eval = ( defined $self->{$key}{path} ) ? '$tmp_record{' . join( '}{', (@{$self->{$key}{path} +},$key) ) . '} = $value' : '$tmp_record{'.$key.'} = $value'; #and then I run: eval $code_to_eval or warn @_;

If people are familiar with my ongoing postings, this relates to the ideas at the bottom of Re: Building and returning structured records from a query.

This works great and does exactly what i want to. This is why I was quite suprised when i found an error in my warning logs:

csResource::Registry=HASH(0x1a6f03c)

I'm running under strict and diagnostics. Any ideas what might be causing this? Thanks much.


In reply to Eval errors though code is successful by AidanLee

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.