Hello monks,
I have a question about iterating over the results from a Class::DBI object. The dataset that I'm expecting to return from my code does not match what I'm getting when I run the SQL code itself. I have two items, one that is a giftcard and one that is not, however, when I run through the loop it shows I have two gift cards. Here is my code:
my @line_rows = GiftCardLoad::DB::Lineitem->search(company => $self->{ +snum}, estimate_number => $est_obj->ESTIMATE_NUMBER); foreach (@line_rows) { print "ITEM NUMBER: " . $_->item_number . "\n"; if ($_->item_number eq 'GIFTCARD') { $verified++; } }
I've already tried turning the @line_rows into $line_rows and using while(my $line = $line_rows->next) {...} but that doesn't work either. Any help would be appreciated.
The SQL code I'm running to replicate this is SELECT * FROM LINEITEM WHERE COMPANY = '0696' AND ESTIMATE_NUMBER = '365578' This returns two rows of data, one with a giftcard and one without.

In reply to Class::DBI result iteration by perldiverx

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.