Re: Using GET and POST Data Simultaneously

2010-06-24 Thread Brandon McCaig
On Wed, Jun 23, 2010 at 7:03 AM, Nigel Peck wrote: > A Perl web-application I have written uses both GET and POST data at the > same time. This is because I have URLs like: *snip* > I get data using CGI.pm and a little sub like this: > > sub _get_param_by_preference { >        my ( $q, $param ) =

Re: Multiple background processes

2010-06-24 Thread John W. Krahn
HACKER Nora wrote: Hi list, Hello, I am currently having an issue with background processes. I already searched the web and found a way how to principally send a process into background, wait for the execution to finish and then go on with the main program: From your description you are doi

AW: Multiple background processes

2010-06-24 Thread Thomas Bätzler
HACKER Nora asked: > I am currently having an issue with background processes. I already > searched the web and found a way how to principally send a process into > background, wait for the execution to finish and then go on with the > main program: > > my $pid = fork; > if ( $pid ) { > wait;

Re: Multiple background processes

2010-06-24 Thread Shlomi Fish
Hi Nora, On Thursday 24 Jun 2010 10:15:11 HACKER Nora wrote: > Hi list, > > I am currently having an issue with background processes. I already > searched the web and found a way how to principally send a process into > background, wait for the execution to finish and then go on with the > main p

Re: Simple, synchronous interaction with a local server process

2010-06-24 Thread Shlomi Fish
On Wednesday 23 Jun 2010 23:31:29 Chap Harrison wrote: > Hi, > > I have a Perl app that makes SQL queries to DBF (DBase IV) databases. I > haven't found a reliable DBI::DBD module for accessing DBase IV, but I do > have a copy of the JDBC library, so I wrote a simple Java command-line > program t

Multiple background processes

2010-06-24 Thread HACKER Nora
Hi list, I am currently having an issue with background processes. I already searched the web and found a way how to principally send a process into background, wait for the execution to finish and then go on with the main program: my $pid = fork; if ( $pid ) { wait; print "done.\n"; } e