On Mon, 2006-05-01 at 16:47 -0500, Matthew wrote: > Also, if there is any documentation on how to > correctly use Apache::DBI with mod_perl2 and apache2, that would be > great cause even though I'm "use Apache::DBI", my connections aren't > being cached.
As it says in the docs for Apache::DBI, you can debug new connections by turning on $Apache::DBI::DEBUG. Make sure you load Apache::DBI before loading anything else that might use DBI. Putting it at the very beginning of your startup.pl is usually good. - Perrin