DBD-DB2 - Re: No error returned

Posted on Wed Jul 18 17:51:35 2007 by ssemenyuk in response to 5736 (See the whole thread of 2)
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 :)
Write a response