<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">2015-09-30 15:17 GMT-05:00 Alex Mestiashvili <span dir="ltr"><<a href="mailto:mailatgoogl@gmail.com" target="_blank">mailatgoogl@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Just look it up on <a href="http://metacpan.org" target="_blank">metacpan.org</a>, it is very useful for debugging.<div><br></div><div>with debug you can log something in the log file, </div><div>I usually start a dancer app with plackup  -a /bin/app.(psgi|pl) </div><div>and monitor what is happening in the output.</div><div><br></div><div>if you prefer to use print, then you need to write it this way:</div><div><br></div><div>print Dumper($pats_ref);</div><div><br></div><br></div></blockquote></div><br></div><div class="gmail_extra">Well something somewhat strange has happened. When I do:  print Dumper($pats_ref) . "\n"; from the perl module that handles the DB query it only prints one row:<br><br>$VAR1 = {<br>          '8' => {<br>                   'ID' => '8',<br>                   'ANAME' => 'KOB',<br>                   'opp_team' => 'Cardinals',<br>                   'YEAR' => '2015',<br>                   'date' => '2015-09-04',<br>                   'AMOUNT' => '2.00',<br>                   'IDD' => '3',<br>                   'CHNAME' => 'DWB',<br>                   'CHLG_ID' => '12',<br>                   'SPONSOR' => 'MPK',<br>                   'season' => 'Fall'<br>                 }<br>        };<br><br></div><div class="gmail_extra">This is baffling and very frustrating because when I do the exact same query from the MySQL console it yields 3 row and not 1 row.<br><br> ID | CHLG_ID | season | YEAR | date  | opp_team | NAME  | NAME                                   | AMOUNT | sponsor |<br>+----+---------+--------+------+------------+----------+-----------+-----------------------------+--------+---------+-------------<br>|  8 |       9  | Fall   | 2015 | 2015-09-04  | Cardinals    | KOB | AFA                                           |   2.00 | MPK |<br>|  8 |      12 | Fall   | 2015 | 2015-09-04 | Cardinals     | KOB | DWB                                         |   1.00 | RFR  |<br>|  8 |      12 | Fall   | 2015 | 2015-09-04 | Cardinals     | KOB | DWB                                         |   2.00 | MPK |<br>+----+---------+--------+------+------------+----------+-----------+-----------------------------+--------+---------+<br><br> Any insight as to why this might be happening would be greatly, greatly appreciated. <br><br><br></div><div class="gmail_extra"><br></div></div>