On Mon, 12 Jun 2000, Rob Tanner wrote:
> Believe it or not, it's the simplest task in the world. In startup.pl add
> the line "PerlModule Apache::DBI"
You can either stick "PerlModule Apache::DBI" in your httpd.conf or add
'use Apache::DBI ();' to your startup.pl. Also, for mysql, you'll need
to add a keepalive routine to your startup.pl:
sub Apache::DBI::db::ping {
my $dbh = shift;
return $dbh->do('select 1');
}
- Matt
- problems with Apache::DBI Cere M. Davis
- Re: problems with Apache::DBI Edmund Mergl
- Re: problems with Apache::DBI Doug Kyle
- Problems with Apache::DBI Webmast98
- Re: Problems with Apache::DBI Rob Tanner
- RE: Problems with Apache::DBI John Keiser
- Re: Problems with Apache::DBI Drew Taylor
- Re: Problems with Apache::DBI Matt Carothers
- Re: Problems with Apache::DBI Edmund Mergl
