in reply to Re: Strange behaviour with DBD::Oracle
in thread Strange behaviour with DBD::Oracle

echo command success or failure has nothing DBI or oracle

except that the example code uses Perl backticks and that can be affected by signal disposition.

  • Comment on Re^2: Strange behaviour with DBD::Oracle

Replies are listed 'Best First'.
Re^3: Strange behaviour with DBD::Oracle
by Anonymous Monk on Sep 05, 2011 at 08:31 UTC

    The code , as presented, doesn't mess with signals, and even if it did, echo still has nothing to do with DBI or DBD::Oracle

      I know the code "as presented" does not mention signals but the code it uses under the hood does. I think you'll find Oracle's instant client library changes the disposition of some signals and as Perl backticks uses system (which relies on SIGCHLD) it is relevant to the post and probably the answer.