beginners@perl.org

2003-09-14 Thread Vema Venkata
In my script iam using the following line.. where the user has to keyin either of the options 1)"Change_Request", 2)"call_req" 3)"Both" options my $choose_table= ; #user has to key in Change_Request,cal

Re: Pearl

2003-09-14 Thread David Wall
--On Sunday, September 14, 2003 8:40 AM -0600 Al Green <[EMAIL PROTECTED]> wrote: I am new to Perl and I would like a script that I can uxse to search for text pattern with a file or files as a wild card or with a given extension. Please reply of list. You can use File::Find for that, but if yo

Re: Compiling a perl script

2003-09-14 Thread Jenda Krynicky
From: Dan Anderson <[EMAIL PROTECTED]> > I'm new to Perl, and my book says that Perl can be compiled. Does > this mean there is a command like $ perl --compile --file ./script or > does this just mean that instead of parsing line by line everything is > checked for errors and then run? (i.e. Just

Re: Compiling a perl script

2003-09-14 Thread Rob Dixon
Dan Anderson wrote: > > I'm new to Perl, and my book says that Perl can be compiled. Does this > mean there is a command like $ perl --compile --file ./script or does > this just mean that instead of parsing line by line everything is > checked for errors and then run? (i.e. Just in Time compilat

Compiling a perl script

2003-09-14 Thread Dan Anderson
I'm new to Perl, and my book says that Perl can be compiled. Does this mean there is a command like $ perl --compile --file ./script or does this just mean that instead of parsing line by line everything is checked for errors and then run? (i.e. Just in Time compilation) Thanks in advance, Dan

Re: Browser wants to do a file download on a CGI script

2003-09-14 Thread R. Joseph Newton
Ron Goral wrote: > Please do not bother to read that obnoxious amount of code. I found my > error: > > print qq[dgCartAdmin::SaveChanges - $h_self{sqlstmt}];# if > $h_self{debug}; > > rather than > > print qq[dgCartAdmin::SaveChanges - $h_self{sqlstmt}] if > $h_self{debug}; > > This print stateme

Re: Perl/DBI newbie: password storage / security question

2003-09-14 Thread essential quint
Dear Zedgar, I'm not completely sure I understand your goals, question and setup, but, if you are concerned about security, using a relational database is almost if not certainly your best bet. I am working on just such a system right now for myself, so I can appreciate your question. I'll gi

Re: file permissions for modules

2003-09-14 Thread R. Joseph Newton
Kevin Pfeiffer wrote: > Hi all, > > (372 unread messages, I'm getting behind, again) > > If I understand things correctly, perl modules, i.e. "mymodule.pm" never > need the exec bit set for (for example, wwwrun) - they're only used by > another perl script? > > -K If they are correctly designed,

Re: Perl/DBI newbie: password storage / security question

2003-09-14 Thread R. Joseph Newton
[EMAIL PROTECTED] wrote: > Thank you Joseph and Motherofperls for your tips, however I need something more than > security through obscurity, as this database is going to store our customers > personal information (real name and contact information) which is absolutely > unacceptable to be stor

file permissions for modules

2003-09-14 Thread Kevin Pfeiffer
Hi all, (372 unread messages, I'm getting behind, again) If I understand things correctly, perl modules, i.e. "mymodule.pm" never need the exec bit set for (for example, wwwrun) - they're only used by another perl script? -K -- Kevin Pfeiffer International University Bremen -- To unsubscri

Re: Pearl

2003-09-14 Thread R. Joseph Newton
Al Green wrote: > I am new to Perl and I would like a scrip People will gladly point you towards modules that can assist you, but do not look here for completed scripts, please. > t that I can uxse to search for > text pattern with a file or files as a wild card or with a given extension. There

Pearl

2003-09-14 Thread Al Green
I am new to Perl and I would like a script that I can uxse to search for text pattern with a file or files as a wild card or with a given extension. Please reply of list. cheers marty -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Notetab-like Perl editor?

2003-09-14 Thread Zanardi2k3
[EMAIL PROTECTED] (Bob X) wrote: > "Zanardi2k3" <[EMAIL PROTECTED]> wrote in message >> I am in a Windows environment, and i love NotaTab. It is one of the >> few tools that makes me wonder how could i ever have carried on >> without it. Only it doesn't do syntax highlighting. >> > Pay the $20 bu

Re: Perl/DBI newbie: password storage / security question

2003-09-14 Thread zedgar
R. Joseph Newton wrote: > [EMAIL PROTECTED] wrote: > >>I'm basically concerned about the security of writing a simple web frontend to SQL >>database, the most important question being: how should I store the database >>password? >>[...] >>There are tens of websites on the server and every databa

Re: Browser wants to do a file download on a CGI script

2003-09-14 Thread R. Joseph Newton
Ron Goral wrote: > > > sub main > { > # > Debugging # > print $h_self{page_header} if $h_self{debug}; > > #--- > # > > # Create objects > Crea