[Perl-unix-users] obtaining mysql stats

2005-09-06 Thread Mario Sanchez
hello we all know that when a query is performed on mysql, we get something back like 10 rows in set (0.00 sec) using perl (DBI) how does one get this information - spefically the time it took to run the query? thank you! ___ Perl-Unix-Users mailing

RE: [Perl-unix-users] Printer perl module printing on same line

2005-09-06 Thread Wagner, David --- Senior Programmer Analyst --- WGO
[EMAIL PROTECTED] wrote: > My problem is that arrays are being printed all on one line (as much > as it can) instead of one line per element. What do I need to do > with the data? > > use Printer; > > my @data = ('This is line one','This line two'); Need to add \n for each line or see if

Re: [Perl-unix-users] Printer perl module printing on same line

2005-09-06 Thread Bruce Hudson
> My problem is that arrays are being printed all on one line (as much as > it can) instead of one line per element. What do I need to do with the > data? > > use Printer; > > my @data = ('This is line one','This line two'); > > $prn = new Printer(); > $prn->use_default; > $prn->print(@data

[Perl-unix-users] Printer perl module printing on same line

2005-09-06 Thread listmail
My problem is that arrays are being printed all on one line (as much as it can) instead of one line per element. What do I need to do with the data? use Printer; my @data = ('This is line one','This line two'); $prn = new Printer(); $prn->use_default; $prn->print(@data); #--- #perl 5