in reply to connection lost while passing oracle db handler to forked process
You can't use one db handle in multiple processes. That would at least require some synchronization between processes, so no two processes use connection to db simultaneously. And if one process closes connection, it will be closed in other processes too, that's probably why you getting this error.
|
|---|