http://qs1969.pair.com?node_id=441784


in reply to Re: Using fork with DBI to create simultaneous db connections.
in thread Using fork with DBI to create simultaneous db connections.

Either let each child have its own connection, or have a common process (eg the 'mother') handle all the database traffic, and use something else to communicate with this 'db-server-process', some sort of RPC or shared memory or... YMMV.

Okay, I'm having the same error and I'm getting the same with every other thread after the first thread finishes. Any thoughts? I'm doing just that myself; Global dbh in $this->{'dbh'} and each child defines it's own $this->{'_dbh-child'}. As soon as I call the first $this->{'_dbh-child'}->disconnect(), every other disconnect fails or spews out that error above, including the master {'dbh'}.

-- philip
We put the 'K' in kwality!

  • Comment on Re^2: Using fork with DBI to create simultaneous db connections.

Replies are listed 'Best First'.
Re^3: Using fork with DBI to create simultaneous db connections.
by guice (Scribe) on Mar 23, 2005 at 21:48 UTC
    The above can be omitted. Turns out the children where closing out the Global DBI object every time they where closing themselves out. It was causing the error. Moving the Global DBI call to a localized method fixed it right up.

    -- philip
    We put the 'K' in kwality!