RE: porting DBI to Apache::DBI

2000-03-29 Thread Geoffrey Young
gt; Subject: Re: porting DBI to Apache::DBI > > > "James Array" <[EMAIL PROTECTED]> wrote: > >Haloo > > > > I'm confusing of how to port DBI CGI to > Apache::DBI mod_perl with > >Apache::Registry > >for the most efficient:

Re: porting DBI to Apache::DBI

2000-03-29 Thread James G Smith
"James Array" <[EMAIL PROTECTED]> wrote: >Haloo > > I'm confusing of how to port DBI CGI to Apache::DBI mod_perl with >Apache::Registry >for the most efficient: > >if my normal DBI CGI is: > >use strict; >use DBI; > >my $dbh=DBI->connect("database","login","password","mysql"); >.. >$

porting DBI to Apache::DBI

2000-03-29 Thread James Array
Haloo I'm confusing of how to port DBI CGI to Apache::DBI mod_perl with Apache::Registry for the most efficient: if my normal DBI CGI is: use strict; use DBI; my $dbh=DBI->connect("database","login","password","mysql"); .. $dbh->disconnect; =