Re: Please help with Database issue

2002-07-23 Thread Garry
Thanks again, Garry "George Schlossnagle" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I'm putting this back on-list since other people may be interested in > continuing this thread. > > If you already have all this

Please help with Database issue

2002-07-23 Thread Garry
Hello everyone, I sure hope I am posting in the right place, the "beginners" definitely applies here. I have a web hosting account and my ISP has the following Perl modules installed: AnyDBM_File,pm db_file NDBM_File.pm ODBM_File.pm SDBM_File.pm gdbm_file perl5db.pl They have a statement on th

Re: regex problem

2001-11-12 Thread Garry Williams
#x27; is exactly the same as `.' as long as /s is *not* specified. -- Garry Williams, Zvolve Systems, Inc., +1 770 551-4504 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Inheriting C-shell variables when running cronjobs

2001-11-12 Thread Garry Williams
t work (I don't understand why) - C-shell environment variables > are still not inherited by my Perl script. Well, maybe your .cshrc was never executed by this shell. Hard to tell with that description. Just set the environment before the command and all will be well. -- Garry Will

Re: Access the same hash in the parent and child process

2001-11-10 Thread Garry Williams
a look at the perlipc manual page for various ways for processes to communicate with each other (including shared memory on *some* systems). It's likely that there is another way to partition or factor your problem that does not involve complex inter-process communication. Good luck.