I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2007-07-18 14:51:35-07 by ssemenyuk in response to 5736
Re: No error returned
For the interested parties... I have resolved the issue. Hmm, I would say I found the reason and how to fight it. All my queries were in a hash like
qname => qq ( QUERY; ),
That last new line int the query definition was killing everything. For some reason parser was treating it as a blank query and my return status was from executing it. Changing the above to:
qname => qq ( QUERY; ),
Made things work. Beware :)
Direct Responses: Write a response