On Tue, Aug 26, 2008 at 2:28 PM, Berg, Eric <[EMAIL PROTECTED]> wrote: > I'm using Apache::DBI. > > I stripped out calls to code that use DBI and it still segfaults. > > I've gone into the code and made sure that any method that does a DBI > call also uses $dbh->disconnect;
With Apache::DBI, you actually need to call $dbh->SUPER::disconnect. However, you would only need to do this right before forking, not on every call. - Perrin