... Apologies for this. I have no idea how this got posted to the list. I only ever use the web interface for the list and for my email and did not send an...
Hi, For another approach, look at: http://theoryx5.uwinnipeg.ca/CPAN/data/GraphViz/GraphViz.html Might be overkill for your application tho'. allan ... ...
Not that I have some grand experience with Perl to be joining this discussion, but I always like to express my opinion about things I know nothing about. To...
Fortuno, Adam
fortunoa@...
Mar 1, 2004 3:31 pm
18188
... The vertical bar '|' is the alternation character in regular expressions. So your pattern of /|/ means match on 'nothing' or 'nothing'. You need to escape...
Paul Archer
tigger@...
Mar 1, 2004 4:11 pm
18189
Paul, OMG! How did I not realize that. Ugh.. <grumble..grumble> I completely glossed the fact that the first argument is treated as a regular expression. Thank...
Fortuno, Adam
fortunoa@...
Mar 1, 2004 4:24 pm
18190
Ok, thanks to Paul's tip here is what I also suggest (working this time) to resolve this problem. ###################################### # Example (Start) ...
Fortuno, Adam
fortunoa@...
Mar 1, 2004 5:07 pm
18191
Hi dear Friends ... Recently, I've downloaded the GNU Win II CD (it contains only free software for Windows) and I found another Perl Interpreter. It calls ...
... Here is another suggestion... It will obtain the next free driver letter available ... @drives= ("f","g","h","l",..."z"); for ($i=0;$i<=$#drives;$i++) { ...
I will be out of the office starting 03/01/2004 and will not return until 03/05/2004. I will respond to your message when I return. In an emergency, please ...
Hello All, I am fetching data from oracle database using select statement. Once I fetch, I am putting the required fields into key and auto incrementing the...
... Maybe a better way is not to work on the code, but work on the data-flow. What are you doing with the 25 mil records ... and could you refine your search...
Hi all; I've been trying to find out what i'm doing wrong but couldn't.Why am I keep receiving these messages back to back ?Any idea? "Possible attempt to...
... Add: use strict; ... The line above is causing this error. use CGI qw/:standard/; [snip] HTH, Charles K. Clarkson -- Mobile Homes Specialist 254 968-8328...
Hello Out of above 2 attached files I could run form.cgi from Browser but could not run test.cgi since it was giving error as 'Premature end of script' Can...
... could not run test.cgi since it was giving error as 'Premature end of script' ... There is nothing wrong with the test.cgi script. The permissions on the...
I am writing a web service client that is a CGI (and is hosted on a shared unix web server) and the web service server requires a username and password for...
Does anyone familiar with the error message that I'm keep receiving.I couldn't find out why I'm having this error. I would appricate for any help Belinda Here...
Just a suggestion: if the error message indicates the error is on line 2, don't include the whole script--especially if it's as long as this one... ... If you...
Paul Archer
tigger@...
Mar 3, 2004 9:08 pm
18206
Hi Belinda, This error means somewhere in the code (not necessarily the line no mentioned in the error, usually a few lines before the mentioned line no.) the...
Why don't you just ask for the username or passwd everytime you run the script? ie: $username=<STDIN>; $password=<STDIN>; $result = ConnectToWebservice...
Hello everyone! I have a problem I cannot solve alone. Please help me. I just started to work with MySQL and I'm stuck. I wrote the following code to...
... following code ... the first ... simple ... Looking at http://hantach.hypermart.net/perldoc/dbd-dbimodule.html I think you may need to change your DSN to ...