in reply to Re: (tye)Re: mod_perl breaks MySQL connectivity...
in thread mod_perl breaks MySQL connectivity...

Just to expand a little on this, Apache::DBI is extremely easy to use. Download and install it, then add

PerlModule Apache::DBI

to the relevant section of your httpd.conf (the one you referenced above). Apache::DBI should now be handling all your connections.

Assuming you've taken care of any variable scoping issues, you should have persistent connections. At least, this is how everything worked on linux for me.