in reply to connection lost while passing oracle db handler to forked process

I want to use the same db handle in the muliple child processes

Why would you want to do such a thing? You'd have to add lots of code to make sure that only one thread uses the connection at any given time. If these are database heavy threads, they'll be constantly blocked, waiting to use the connection.

  • Comment on Re: connection lost while passing oracle db handler to forked process