Hi,
I have a daemon (using Net::Daemon) that uses DBI/DBD-Oracle in forked
children of the daemon.
When a client connects the daemon forks a child that then connects to the
database via DBD-Oracle.
Recently I decided to check all the database connections in the parent
during startup, and this creates a problem:
The DBD-Oracle connnection works fine after the child is forked
BUT, the socket on which I was connected to the client is trashed
I tried setting InactiveDestroy=>1 in my connect call, but this did
not fix it. Has anybody seen this kind of problem?
Lincoln