Re: DBI vs. piping query to Mysql

2002-04-04 Thread Jeff Seger
If you are running apache with mod_perl and if the site has more than a couple of visitors an hour and you use Apache::DBI for connection pooling, you can bet that you will speed up by using DBI. A lot. A whole lot. On Wed, 2002-04-03 at 18:33, Peter Scott wrote: > At 04:28 PM 4/3/02 -0500, Kevi

RE: DBI vs. piping query to Mysql

2002-04-03 Thread Job Miller
EMAIL PROTECTED] Subject: DBI vs. piping query to Mysql Hello all, I am a consultant brought in to manage and restructure some Perl scripts that were written some time ago. The programmer at that time was using the following code to do a query from within a CGI page. ${query} = "SE

Re: DBI vs. piping query to Mysql

2002-04-03 Thread Peter Scott
At 04:28 PM 4/3/02 -0500, Kevin Old wrote: >Hello all, > >I am a consultant brought in to manage and restructure some Perl scripts that >were written some time ago. The programmer at that time was using the >following code to do a query from within a CGI page. > > ${query} = "SELECT ccyymmdd

RE: DBI vs. piping query to Mysql

2002-04-03 Thread Sterin, Ilya
EMAIL PROTECTED] Sent: 4/3/02 2:28 PM Subject: DBI vs. piping query to Mysql Hello all, I am a consultant brought in to manage and restructure some Perl scripts that were written some time ago. The programmer at that time was using the following code to do a query from within a CGI page. ${

DBI vs. piping query to Mysql

2002-04-03 Thread Kevin Old
Hello all, I am a consultant brought in to manage and restructure some Perl scripts that were written some time ago. The programmer at that time was using the following code to do a query from within a CGI page. ${query} = "SELECT ccyymmddhh FROM inventory ORDER BY ccyymmddhh ;" ;