http://www.perlmonks.org?node_id=407356


in reply to DBI Fetches don't work

Have you tried putting the exiting call in an eval block to catch the error? Something like:

eval { $sth->fetch(); }; print "fetch error: $@\n";

Replies are listed 'Best First'.
Re^2: DBI Fetches don't work
by ido50 (Scribe) on Nov 12, 2004 at 14:23 UTC
    Tried, no luck...

    -------------------------
    Live fat, die young

      Yeah, after I posted that I was thinking, if you see no error you're not going to catch one via eval ... My next step would usually be to go to the source and try to add some debug and/or try to get in touch with some people intimate with the code.