mysql query statement

2002-06-06 Thread Hytham Shehab
hi all of u, all whatta i want is see the exact executed query b4 its execution, i mean not like this "select blah from blah when x=? but not ? order by ?", i want to see as if u write it in the console of mysql, something like that "select blah from blah where x=10 order by 'big' group by 'zi

RE: First and second rate programmers

2002-06-06 Thread matt stewart
So much bitterness, i FEEL your pain - let it all out. Strike down your enemies, and the path to the dark side will be complete.. -Original Message- From: drieux [mailto:[EMAIL PROTECTED]] Sent: 05 June 2002 18:32 To: cgi cgi-list Cc: [EMAIL PROTECTED] Subject: Re: First and second ra

RE: First and second rate programmers

2002-06-06 Thread Joel Hughes
the dark side? would that be Python or C++? joel -Original Message- From: matt stewart [mailto:[EMAIL PROTECTED]] Sent: 06 June 2002 09:24 To: 'drieux'; cgi cgi-list Subject: RE: First and second rate programmers So much bitterness, i FEEL your pain - let it all out. Strike down yo

mysql query statement

2002-06-06 Thread Hytham Shehab
hi all of u, all whatta i want is see the exact executed query b4 its execution, i mean not like this "select blah from blah when x=? but not ? order by ?", i want to see as if u write it in the console of mysql, something like that "select blah from blah where x=10 order by 'big' group b

website keywords

2002-06-06 Thread Hytham Shehab
hi guys, how can i access the keyword section of any web page? thx -- Hytham Shehab -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Perl/CGI mysql book

2002-06-06 Thread Brent Michalski
First off, I need to apologize for this email apps *stupid* quoting features, I am using Lotus NOTes... Charles, I think that in this case, your personal opinion may be a bit off. Yes, it is quite easy to develop code that manipulates files in Perl. And, yes, databases are just a collection of

Re: mysql query statement

2002-06-06 Thread fliptop
Hytham Shehab wrote: > hi all of u, > all whatta i want is see the exact executed query b4 its execution, i > mean not like this "select blah from blah when x=? but not ? order by ?", i > want to see as if u write it in the console of mysql, something like that > "select blah from blah w

beginners-cgi@perl.org

2002-06-06 Thread Camilo Gonzalez
Janek, Wouldn't it print: foo: &foo:A B C Also, I believe that you must declare the subroutine before you are allowed to reference it without the &. Am I right about that? -Original Message- From: Janek Schleicher [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 5:10 AM To: [EM

Re: First and second rate programmers

2002-06-06 Thread drieux
On Thursday, June 6, 2002, at 01:33 , Joel Hughes wrote: > > the dark side? would that be Python or C++? > > joel Speaking of which - why would I want to do my CGI in perl - rather than go with tomcat servlets in all java - or write the apache module in 'c' ciao drieux --- -- To u

beginners-cgi@perl.org

2002-06-06 Thread Camilo Gonzalez
Bob, Since this is a list for newbies, can you please be a bit more specific why you are opposed to those things you list. I'm quite fond of using the &foo or &foo(args) calling styles. Is this just a personal preference? -Original Message- From: Bob Showalter [mailto:[EMAIL PROTECTED]]

beginners-cgi@perl.org

2002-06-06 Thread Joel Hughes
No, the subroutinue body can occur before or after the invokation point with or without the &. joel -Original Message- From: Camilo Gonzalez [mailto:[EMAIL PROTECTED]] Sent: 06 June 2002 14:24 To: 'Janek Schleicher'; [EMAIL PROTECTED] Subject: RE: subroutine or &subroutine Janek, Woul

System test.

2002-06-06 Thread Timothy Brier
My system was rejecting e-mails from the list because of header information. Just making sure I'm still on the list.

AW: AW: parsing xml files for variables

2002-06-06 Thread Theuerkorn Johannes
> so I would be working all of the sneek and peek > that I recommend in > http://www.wetware.com/drieux/pbl/RegEx/paraHablarRegular.txt > all inside of the > while() { > } [Theuerkorn Johannes] Ok, played around with the paraHablar..

AW: AW: parsing xml files for variables

2002-06-06 Thread Theuerkorn Johannes
Got it, used unless ( // .. /<\/testsystem>/) instead of if ( // .. /<\/testsystem>/) and it works!!! Thanks Johannes > so I would be working all of the sneek and peek > that I recommend in > http://www.wetware.com/drieux/pbl/RegEx/paraHablarRegular.txt > all inside of

AW: AW: parsing xml files for variables

2002-06-06 Thread Theuerkorn Johannes
> Bullshit, mixed the regexes together: OK, complete part looks like this now: > # #testsystem # if ( // .. /<\/testsystem>/){ #lock for tag paragraf testsystem my $line =$_;

Re: System test.

2002-06-06 Thread David T-G
Timothy -- ...and then Timothy Brier said... % % My system was rejecting e-mails from the list because of header information. Just making sure I'm still on the list. Thank you so much for letting us all know. I think the more efficient way to test is to send mail to [EMAIL PROTECTED] an

beginners-cgi@perl.org

2002-06-06 Thread drieux
Begin forwarded message: > From: drieux <[EMAIL PROTECTED]> > Date: Thu Jun 06, 2002 07:38:29 US/Pacific > To: begin begin <[EMAIL PROTECTED]> > Subject: notBob clarifies the Bob was Re: subroutine or &subroutine > > > On Thursday, June 6, 2002, at 06:31 , Camilo Gonzalez wrote: > [..] >> Sin

RE: website keywords

2002-06-06 Thread Camilo Gonzalez
Hytham, This a HTML question, not a CGI one but here goes: Keywords are usually stored in the tags at the top of a page. They follow the form -Original Message- From: Hytham Shehab [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 6:05 AM To: [EMAIL PROTECTED] Subject: website

Re: references and dereferencing

2002-06-06 Thread drieux
On Thursday, June 6, 2002, at 08:35 , Nikola Janceski wrote: [..] > > # $FUNC is a ref to a hash > > ## in a subroutine > foreach my $function (keys %{$FUNC}){ > my @called_funcs; > # populate @called_funcs; > push @{$FUNC->{$function}}, @called_funcs; > } > > ## later in code i

beginners-cgi@perl.org

2002-06-06 Thread Janek Schleicher
Bob Showalter wrote at Wed, 05 Jun 2002 15:30:29 +0200: > > 3. Don't use the &foo or &foo(args) calling styles. > Allthough I would miss it a little bit. I find the &foo style useful when implementing a little polymorphic subroutine. Example: sub foo { /NUMERIC/&& &_foo_n

Is it a bug in Perl?

2002-06-06 Thread Octavian Rasnita
Hi all, I've run a script by a command line with: perl -d -T script.pl This launched the debugger but I've seen the following error: Use of uninitialized value in split at c:/Perl/lib/perl5db.pl line 508. This is a file in the Perl directory, and the line with errors is: if (($stop,$acti

How to send an email without Net::SMTP

2002-06-06 Thread Octavian Rasnita
Hi all, Is it complicated to send email with an SMTP mail server if the Net::SMTP module is not installed? Thank you. Teddy, [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

What database would your recommend?

2002-06-06 Thread Octavian Rasnita
Hi all, I want to start learning a database that works with Perl but I would like to learn a database that works under Windows and Unix also. Is there such a thing? Of course, I would like to learn something as simple as possible because I am a beginner in Perl. Thank you. Teddy, [EMAIL PROTE

What am I doing wrong?

2002-06-06 Thread Octavian Rasnita
Hi all, I've made a script that loads a file and announce me by mail about this. The problem is with the mailing. I've tried to make the script to work with an SMTP server if the script is ran under Windows and with sendmail also if it runs under Unix. The important code with problem is: if ($

sqlplus output directly to a hash?

2002-06-06 Thread Jeff
Hi all, Is it possible to read the output of SQLPLUS (Oracle) directly into a hash array? I don't have DBI installed so this is not an option. Currently, I am dumping the data to a spool file, then reading the file into the hash. I'd like to skip the file I/O step if possible. #--- beginning