Re: Cpan colors

2003-07-23 Thread Ted S.
On 23 Jul 2003, Barry Dancis wrote in perl: > Hi -- > > Starting about a week ago whenever I search cpan, I am getting > orange > lettering instead of royal blue. I liked the royal blue. How do I get > it back? How about writing a personal stylesheet along the lines of: * {color: #00

RE: DBI Question

2003-07-23 Thread Bradley K. Embree
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Stephen Patterson > Sent: Wednesday, July 23, 2003 11:10 AM > To: [EMAIL PROTECTED] > Subject: Re: DBI Question > > > as you'll only be getting a single element, you should be able to use > $count = $s

pipe input bug?

2003-07-23 Thread Schneider, Kenneth (EKT)
i've written the following test script: ## # this line inputs the number 1..1000 open IN, qq(perl -e "print join(qq(\\n), (1..1000))" |); for (1..10) { $_=; print $_; } system(""); for (1..10) { $_=; print $_; } close IN; ## i would expect it to print the numbers 1..2

Re: DBI Question

2003-07-23 Thread Stephen Patterson
On 23 Jul 03, steve silvers ([EMAIL PROTECTED]) wrote: > But if you use a statement as a count. > > SELECT COUNT(*) FROM TABLE WHERE bla.. > > How do you get the count number. Do you still have to go through a loop and > count all occurences of the searched criteria? If so then you can't use a

administrivia

2003-07-23 Thread Jeff Griffiths
hi all, 99% of posts to this list are in plain text or at least mime / multipart email. plain text in US/ASCII or UTF-8 encoding is obviously best if users are going to be posting code samples (and IMO this list is ALL ABOUT trading code and sharing ideas). as the moderator i would like to encou

RE: Error message from hanmir.com

2003-07-23 Thread Jeff Griffiths
solved thanks to (if i say so myself) a degree of intrepidity. i just searched for other email addresses subscribed from hanmar.com - there was only one. i sent en email with specific text and waited for the bounce =) let me know if a problem like this crops up again, and if anyone has any thought

RE: Cpan colors

2003-07-23 Thread Barry.Dancis
Hi All -- Thanks for your (often humorous) replies. I went to http://search.cpan.org/orange.html and donated to obtain the cure for the orange scourge. They already have received $1185 and need another $1915 to restore the royal colors. How about the rest of you supporting the cause. B^)

Re: Page generation tweeking

2003-07-23 Thread Carl Jolley
On Wed, 23 Jul 2003, Farrington, Ryan wrote: > Ok I have a page that reads 2 files into arrays. Pretty simple stuff like > this: > open(FILE, "file1.txt"); > @file1 = ; > close(FILE); > > open(FILE, "file2.txt"); > @file2 = ; > close(FILE); > > Now file1 contain

Re: DBI Question

2003-07-23 Thread Charlie Schloemer
- Original Message - From: "steve silvers" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 23, 2003 10:49 AM Subject: DBI Question > This might be a dumb question but ill give it a shot. In a SELECT statement > you grab the returned data via > > while (($bla, $bla2) = $

RE: DBI Question

2003-07-23 Thread Iain Whyte
COUNT returns a single value (row) in the result table. for normal select: SELECT * FROM MYTABLE while (@sql_output = $sth2->fetchrow_array) { do something with it; } for COUNT: SELECT COUNT(*) FROM MYTABLE ($count) = $sth2->fetchrow_array; $sth2->finish(); print $count; Cheers, --

RE: Error message from hanmir.com

2003-07-23 Thread Jeff Griffiths
i've gotten these as well, but the email [EMAIL PROTECTED] isn't subscribed. what i expect is happening is that another email address that IS subscribed is being forwarded to this email address. tracking this would be easy of the mail server at the other end didn't strip the headers out before atta

RE: Cpan colors

2003-07-23 Thread Charbeneau, Chuck
Forgot to send this to everyone: Or he could go to: http://search.cpan.org click on the link which reads: "Why is this site Orange?" and leads here: http://search.cpan.org/orange.html And read how he can get it back. C-. ** ** LEGAL DISCLAIMER ** **

RE: Error message from hanmir.com

2003-07-23 Thread Francis Paulin
yes I got an error message too -Original Message- From: $Bill Luebkert [mailto:[EMAIL PROTECTED] Sent: 23 juillet, 2003 11:51 To: [EMAIL PROTECTED] Subject: Re: Error message from hanmir.com Ted S. wrote: > Is anybody else getting an error message from [EMAIL PROTECTED] every > time th

DBI Question

2003-07-23 Thread steve silvers
This might be a dumb question but ill give it a shot. In a SELECT statement you grab the returned data via while (($bla, $bla2) = $sth2->fetchrow_array) { print the data.. } But if you use a statement as a count. SELECT COUNT(*) FROM TABLE WHERE bla.. How do you get the count number. Do you

Page generation tweeking

2003-07-23 Thread Farrington, Ryan
Title: Page generation tweeking Ok I have a page that reads 2 files into arrays. Pretty simple stuff like this:     open(FILE, "file1.txt");     @file1 = ;     close(FILE);         open(FILE, "file2.txt");     @file2 = ;     close(FILE); Now file1 contains a comp