online database manager

2004-12-09 Thread planar
Does someone know convenient Perl online database with alphabetical selector, allowing select the specific letter use alphabeticall selector, without viewing all list? No online editing required, just display. Plus search feature. [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [K] [L] [M] [N] [O] [P]

Re: array statistic (different)

2004-12-09 Thread Ing. Branislav Gerzo
Charles K. Clarkson [CKC], on Wednesday, December 8, 2004 at 08:32 (-0600) wrote about: CKC What is it representative of? What is the application? CKC Will there be only didgits? What is the range of values CKC available. ok, I rewrote that script a bit, the best solution to me is using

Re: want to get the count of rows of a table from oracle database using perl script

2004-12-09 Thread Tor Hildrum
On Wed, 8 Dec 2004 22:49:25 -0800 (PST), Priyanka krishnaraj [EMAIL PROTECTED] wrote: Hi All I want to get the count of rows in paticular table of the oracle database. You want DBI and DBD::Oracle. http://www.orafaq.com/faqperl.htm Tor -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

Need advanced help with tracking down warnings in eval'd functions

2004-12-09 Thread Kirk Bauer
Not a beginner's question, but I don't know what other mailing list to use. Please direct me accordingly. I have a Perl program that defines numerous functions by eval'ing a string (read from an external file). I have a comprehensive $SIG{__WARN__} handler but for errors in these functions all

Good examples of POD for newbies?

2004-12-09 Thread KEVIN ZEMBOWER
Can anyone suggest a small module which demonstrate good usage of POD, to use as an example for someone who would like to write POD correctly for the first time? Looking at CPAN for POD tutorials or examples didn't show up anything directly. Reading through the Camel book was helpful, but

Re: Good examples of POD for newbies?

2004-12-09 Thread Edward Wijaya
On Thu, 09 Dec 2004 09:17:50 -0500, KEVIN ZEMBOWER [EMAIL PROTECTED] wrote: Can anyone suggest a small module which demonstrate good usage of POD, to use as an example for someone who would like to write POD correctly for the first time? Check this out:

RE: Good examples of POD for newbies?

2004-12-09 Thread Shaw, Matthew
perldoc perlpod is pretty comprehensive. Have you checked that out? -Original Message- From: KEVIN ZEMBOWER [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 10:18 AM To: [EMAIL PROTECTED] Subject: Good examples of POD for newbies? Can anyone suggest a small module which

Re: Need advanced help with tracking down warnings in eval'd functions

2004-12-09 Thread Paul Johnson
On Thu, Dec 09, 2004 at 07:16:02AM -0700, Kirk Bauer wrote: Not a beginner's question, but I don't know what other mailing list to use. Please direct me accordingly. Not exactly mailing lists, but comp.lang.perl.moderated and perlmonks.org might be helpful. (Actually, you can access

RE: Good examples of POD for newbies?

2004-12-09 Thread KEVIN ZEMBOWER
Matthew and Edward, thank you. Both of those two sources are excellent, and I didn't know of either. -Kevin Shaw, Matthew [EMAIL PROTECTED] 12/09/04 09:21AM perldoc perlpod is pretty comprehensive. Have you checked that out? -Original Message- From: KEVIN ZEMBOWER [mailto:[EMAIL

Re: Need advanced help with tracking down warnings in eval'd functions

2004-12-09 Thread Jonathan Paton
Dear Kirk, Perl already has a mechanism for splitting a large program in to several smaller files. perldoc AutoLoader Have you considered overloading the built-in warn instead of using a signal handlier? Would it be possible to provide a simplifed example script? My English isn't as good as

Re: Good examples of POD for newbies?

2004-12-09 Thread Jonathan Paton
Dear Kevin, There are thousands of examples of POD on CPAN. E.g. http://search.cpan.org/src/DCONWAY/Parse-RecDescent-1.94/lib/Parse/RecDescent.pod Jonathan Paton On Thu, 09 Dec 2004 09:17:50 -0500, KEVIN ZEMBOWER [EMAIL PROTECTED] wrote: Can anyone suggest a small module which demonstrate

LWP get_tag('img')

2004-12-09 Thread Brian Volk
Hi All, I'm having trouble narrow down the correct img tag... This piece of code will get ALL the img tags: while (my $img_tag = $parser-get_tag('img')) { my $i = $img_tag-[1]; my $code = $i-{'src'}; print $code\n } All I want is the 11th one... so I tried to do a foreach

RE: Need advanced help with tracking down warnings in eval'd functions

2004-12-09 Thread Bakken, Luke
Perl already has a mechanism for splitting a large program in to several smaller files. perldoc AutoLoader Or modules for that matter. When I first read the eval trickery my first thought was WHY???. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: LWP get_tag('img')

2004-12-09 Thread Flemming Greve Skovengaard
Brian Volk wrote: Hi All, I'm having trouble narrow down the correct img tag... This piece of code will get ALL the img tags: while (my $img_tag = $parser-get_tag('img')) { my $i = $img_tag-[1]; my $code = $i-{'src'}; print $code\n } All I want is the 11th one... so I tried to

Re: Need advanced help with tracking down warnings in eval'd functions

2004-12-09 Thread Kirk Bauer
On Thu, 9 Dec 2004, Jonathan Paton wrote: Have you considered overloading the built-in warn instead of using a signal handlier? How do I overload the built-in warn? Would it catch warnings like Use of undefined value in eq (==) and such? If that doesn't work I can try to put together some

RE: Need advanced help with tracking down warnings in eval'd functions

2004-12-09 Thread Kirk Bauer
On Thu, 9 Dec 2004, Bakken, Luke wrote: Or modules for that matter. When I first read the eval trickery my first thought was WHY???. Well, I have a set of script files. Each file is split into an init section and several different scripts. The init section is eval'd right away and each

LWP::UserAgent - Not in this case?

2004-12-09 Thread diogo . senai
Hi folks, I´m here again to once more ask for your help. As some of you know, I´m trying to create a script that automatically fills in a formfield and get the result of that search. It´s based on a code, for example: 9600352534 The link to the form is

Re: LWP::UserAgent - Not in this case?

2004-12-09 Thread Jonathan Paton
Hi, I can only guess at the source of the problem. I think it is because that web site requires cookies. The solution is to have a cookie jar, like: my $agent = LWP::UserAgent-new(); $agent-cookie_jar({}); Jonathan Paton -- #!perl $J=' 'x25 ;for (qq 1+10 9+14 5-10 50-9 7+13 2-18 6+13 17+6

Why the if loop does not work??

2004-12-09 Thread Li, Aiguo (NIH/NCI)
I am trying to merge two file based on a SNP_A-## list in each file. For some reason, the regular expression in the if loop does not work and I can not match the key values generated from hash to the string from the input file. Could anybody help me detect the problem? Thanks, AG

RE: Term::ReadKey substitute for perl v5.8.0

2004-12-09 Thread Jason.Price
Unfortunately, that does not resolve the issue in 5.8.0. Jason -Original Message- From: Jonathan Paton [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 08, 2004 4:44 PM To: Price, Jason (TLR Corp); [EMAIL PROTECTED] Subject: Re: Term::ReadKey substitute for perl v5.8.0 On Wed, 8

Re: LWP::UserAgent - Not in this case?

2004-12-09 Thread diogo . senai
Hi, thanks jonathan, but it´s still not working... In this formfield (numrproc) there´s a script to check if only numbers are being typed etc... Can this script be the problem of all? I´m posting here the source of my script and I´d really really really apreciate if you could try this out with

RE: Why the if loop does not work??

2004-12-09 Thread Moon, John
I am trying to merge two file based on a SNP_A-## list in each file. For some reason, the regular expression in the if loop does not work and I can not match the key values generated from hash to the string from the input file. Could anybody help me detect the problem? Thanks, AG

confusing warnings and void values

2004-12-09 Thread RichT
Hi all, its time again for me to hassle you, i have my script mostly working, but iv have been bashing my head against a wall trying to fix the last bits... its a script for extracting data from a file and exporting it to another. Problems: 1) i keep getting the warning Use of uninitialized

LWP can't get center tag...

2004-12-09 Thread Brian Volk
Hello All, I used this script before for getting text... but now I'm trying to get the img src from the "only" center tag in the source code. Any one have any idea what I am doing wrong? I attached the source code if that helps.. :~) TIA for any suggestions! #!/usr/bin/perl -w use

RE: LWP get_tag('img')

2004-12-09 Thread Brian Volk
Brian Volk wrote: Hi All, I'm having trouble narrow down the correct img tag... This piece of code will get ALL the img tags: while (my $img_tag = $parser-get_tag('img')) { my $i = $img_tag-[1]; my $code = $i-{'src'}; print $code\n } All I want is the

Re: LWP get_tag('img')

2004-12-09 Thread JupiterHost.Net
Flemming Greve Skovengaard wrote: Brian Volk wrote: Hi All, I'm having trouble narrow down the correct img tag... This piece of code will get ALL the img tags: while (my $img_tag = $parser-get_tag('img')) { my $i = $img_tag-[1]; my $code = $i-{'src'}; print $code\n } All I want is

Printing ?

2004-12-09 Thread Paul Ohashi
Hi All, Is there a way to 'print' to STDOUT and a FILE with one line? Something like:echo Some text | tee - a somefile.out -Paul

Re: Printing ?

2004-12-09 Thread Randy W. Sims
Paul Ohashi wrote: Hi All, Is there a way to 'print' to STDOUT and a FILE with one line? Something like:echo Some text | tee - a somefile.out http://search.cpan.org/dist/IO-Tee/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: confusing warnings and void values

2004-12-09 Thread Randy W. Sims
RichT wrote: Hi all, its time again for me to hassle you, i have my script mostly working, but iv have been bashing my head against a wall trying to fix the last bits... its a script for extracting data from a file and exporting it to another. Problems: 1) i keep getting the warning Use of