... I guess my ISP / Host is having cron-job problems (the website says that cron-jobs are updated (to the main job list i guess) every hour..) I came online a...
... I really shouldn't respond to this because if you did a bit of looking around you'd find the answer. Maybe: DBIx::MSSQLReporter You can get it from: ...
Hi, I'm getting this error: Can't load 'C:/perl/Perl/site/lib/auto/XML/Parser/Expat/Expat.dll' for module XML::Parser::Expat: load_file:One of the library...
16380
Paul Archer
tigger@...
Sep 1, 2003 2:33 pm
... To expand on this slightly, the *reason* that split is the wrong tool for the job is that the pattern you use with split is the delimiter, and the ...
... 2 chars ... tool for ... characters ... And if you retain the delimiters with: @squares=split(/(..)/, $line); # Note brackets. you will get: 'AA', '',...
Can anyone explain in "English" what the difference is between these three? Cheers Jonathan...
16383
Paul Archer
tigger@...
Sep 1, 2003 3:28 pm
... (Short answer on 'local', BTW, is it predates 'my', and isn't used much anymore.) From the beginners@... list: From Bob_Showalter@... Mon...
16384
J.E. Cripps
cycmn@...
Sep 1, 2003 3:33 pm
... Perl variables (be they $scalar, @array, %hash) may be 1. "global" or "package" variables 2. "lexical" or scoped Global variables are the default. They can...
16385
J.E. Cripps
cycmn@...
Sep 1, 2003 4:00 pm
... That's right. The "my" function wasn't around in Perl 4, "local" was....
16386
J.E. Cripps
cycmn@...
Sep 1, 2003 4:16 pm
... More accurately, from perldoc perlsub: use strict 'vars'; then any variable reference from there to the end of the enclosing block must EITHER refer to a...
16387
Van Andel, Robbert
RVanAndel@...
Sep 1, 2003 5:35 pm
I received a perl file to troubleshoot and am perplexed by the following piece of code my $sth=$dbh->prepare("select code,qty from custcode where account=?"); ...
From: "Van Andel, Robbert" <RVanAndel@...> ... It denotes the place where will be the parameter passed to $sth->execute(...) inserted. It's called...
16389
Paul Archer
tigger@...
Sep 1, 2003 7:45 pm
... Yuppers. One critical difference between 'local' and 'my' (and a good reason to (usually) avoid 'local') is that a 'local' variable in a subroutine will be...
Thank you to all who replied. Worked like a charm GIDustin ... -- My Home Page: http://www.gidustin.net Alternate: http://www.civ3files.com -- When NASA...
I have a following script to print the process id to a log file but in the log file the poroccess id seems to be different can any one help/sugges ...
16392
Janarthanan, Prassana
Prasanna-Janarthanan@...
Sep 2, 2003 11:24 am
Hi all, I have a good Q on SIG. I want to capture all the Signals and call my own function which would log with a message in to a file. I would do something...
16393
Janarthanan, Prassana
Prasanna-Janarthanan@...
Sep 2, 2003 11:32 am
Sorry I din give my piece of code.. For capturing INT Cnt-c key sequnce. sub INT_handler { # close all files. # send error message to log file. exit(0); } ...
... ">>/proj/ahd02/CAisd/site/mods/scripts/log/init/ahdxapi.init.log")||die "OS Error was $! \n"; ... Woah, be patient. I think the majority of members of this...
All, I'm currently using a composite key hash to gather counts of certain combinations of data. Bogus sample data: BOB,M,C TED,T,D BOB,M,C TED,D,D BOB,M,C so I...
I'm attempting to use Perl to open and work with Oracle SQL Plus. My problem is that the SQL Plus password has a special character in it and needs to be...