Testing Perl CGI scripts under Windows 98 & Personal Web Server

2001-05-18 Thread Kris Cook
I'm trying to test my program under Personal Web Server, and when the Perl script runs (called from an HTML page, with passed parameters), it opens a DOS window and prompts for input. Now, if I run it from a DOS window, with parameters, it runs, but prints to the DOS window. If I redirect my ou

FW: Testing Perl CGI scripts under Windows 98 & Personal Web Server

2001-05-18 Thread Kris Cook
n case anyone else had similar frustrations. It appears that PWS isn't well documented or supported out there in the real world (as opposed to the fantasy realm where I work). > -Original Message- > From: Kris Cook > Sent: Friday, May 18, 2001 10:31 AM > To: &

RE: Dynamic regular expressions

2001-05-22 Thread Kris Cook
Just wanted to point out that the pair: allo ^ao$ doesn't work, because this regex matches "ao" on a line by itself. you would have to perform two matches, one for "^a" and another for "o$" in order to match te string "allo" this way. As for why the '/' doesn't cooperate, it has to do with the

autonumbered data fields in ODBC database.

2001-05-22 Thread Kris Cook
I'm writing a form that inserts into a database table (a header record) with an autonumbered field (system assigned). Ordinarily, the value of the serial field assignment in an SQL database is stored in sqlca.sqlerrd[2], but I can't find any way to reference this in the documentation I have for W