From 77e9f32c63a3d507ec32267fbb4451cb58ad7b97 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Sun, 15 Jun 2003 23:11:18 +0000 Subject: [PATCH] fixed a db connection pooling bug thanks to andy --- sbin/preload.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/preload.perl b/sbin/preload.perl index eef4e6f6d..fb801d73d 100644 --- a/sbin/preload.perl +++ b/sbin/preload.perl @@ -34,9 +34,9 @@ use URI::Escape (); #---------------------------------------- # Database connectivity. #---------------------------------------- +#use Apache::DBI (); # Uncomment if you want to enable connection pooling. Not recommended on low memory - high traffic systems. use DBI (); DBI->install_driver("mysql"); # Change to match your database driver. -#use Apache::DBI (); # Uncomment if you want to enable connection pooling. Not recommended on low memory - high traffic systems.