Connection pooling implementation in perl

2009-11-25 Thread Praveena Vittal
Hi All, We would like to implement connection pooling for mysql database in Perl. Can anyone help in this? Regards, Praveena -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Usage of CGI.pm module

2009-01-19 Thread Praveena Vittal
Hi, I am newbie to this perl community. I am writing to code to upload file using CGI.pm. During file upload, CGI.pm is saving a file(as CGITempxxx) in the temporary location(ex. /tmp). After copying the file, it is moving the file to corresponding file location. Is that possible to avoid co

Re: certification for perl

2008-10-09 Thread Praveena Vittal
Hi All, Thanks for your suggestion . First of all ,i was shocked to see the list of books. Also I got the safari resource library from where we can enrich our knowledge.Thanks for that. Regards, Praveena Rob Dixon wrote: Jeff Pang wrote: Message du 06/10/08 14:22 De : "Pra

Re: certification for perl

2008-10-06 Thread Praveena Vittal
with Perl and C.chm Writing Perl Modules for CPAN - Apress 2002.pdf mod_perl Quick Reference Card.pdf Message du 06/10/08 14:22 De : "Praveena Vittal" A : beginners@perl.org Copie à : Objet : certification for perl Hi All, I like to do some certification in perl,but

certification for perl

2008-10-06 Thread Praveena Vittal
Hi All, I like to do some certification in perl,but i could not get any information about the available certifications in perl . Could anyone help me in this? Thanks, Praveena

Re: Reading the next line in a file from the current position

2007-11-12 Thread Praveena Vittal
Thanks for all your comments. Jeff Pang wrote, On 11/12/2007 12:26 PM: On Nov 12, 2007 2:48 PM, Praveena Vittal <[EMAIL PROTECTED]> wrote: Hi, Thanks for your comments.. I like to know what does the below represents.. $' from `perldoc perlvar': $&

Re: Reading the next line in a file from the current position

2007-11-11 Thread Praveena Vittal
Hi, Thanks for your comments.. I like to know what does the below represents.. $' Regards, Praveena Jeff Pang wrote, On 11/07/2007 06:48 PM: --- Praveena Vittal <[EMAIL PROTECTED]> wrote: Hi all, I like to know how can we read a line next to the current position

Reading the next line in a file from the current position

2007-11-07 Thread Praveena Vittal
Hi all, I like to know how can we read a line next to the current position in a file . Regards, Praveena -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

problem in returning the hash reference

2007-10-30 Thread Praveena Vittal
Hi All, I have writen a library for a particular function.I could not written the hash reference fron the subroutine "process_files".Can any one please help in this regard? Also i have pasted the file below package Filter_Rule; use StorADE::Tele_Decoder; use database_common_function; use DBI

Re: Separating the body of the text in email from its header

2007-10-26 Thread Praveena Vittal
Thanks for your suggestion. Nagasamudram, Prasanna Kumar wrote, On 10/26/2007 02:51 PM: The usually the format of the mail will be HEADER1 HEADER2 HEADER3 .. .. .. HEADERn BODY Please note there will be a blank line b/w the end of the header and the body. So you start from the beginning o

Separating the body of the text in email from its header

2007-10-26 Thread Praveena Vittal
Hi, I need a urgent help How can we separate the body of the text in an email from its header? Regards, Praveena -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

back slash problem

2007-10-04 Thread Praveena Vittal
Hi All, I need a way to replace a backslash(ie:\) with \\ in a string. Please help me... eg:ssh\[[\d]*\] from [\d\.]* consider the string Regards, Praveena -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Off-topic (Re: Apache startup problem)

2007-09-07 Thread Praveena Vittal
/cgi-bin/frontpage.cgi In the GUI it is showing 403 Forbidden message thanks in advance, Praveena S.A. Birl wrote, On 09/07/2007 05:51 PM: On Sep 7, 2007, Praveena Vittal ([EMAIL PROTECTED]) typed: Praveena: Hi All, Praveena: Praveena: This is not related to Perl .But I am using a Apache

Apache startup problem

2007-09-07 Thread Praveena Vittal
Hi All, This is not related to Perl .But I am using a Apache Webserver for my perl application. I have newly setting up web server with the virtual host listening in the port 3032(with SSL enabled).When starting the apache ,following error is displayed. *"permission denied make_sock: could

Re: how to get parameters from another form

2007-09-03 Thread Praveena Vittal
Jeff Pang wrote, On 09/03/2007 12:50 PM: 2007/9/3, Praveena Vittal <[EMAIL PROTECTED]>: Hi All, I have a checkbox in a form named form.And one submit button in one form named form1 and another submit button in another form form 2. Is there any value to access the check box name

how to get parameters from another form

2007-09-03 Thread Praveena Vittal
Hi All, I have a checkbox in a form named form.And one submit button in one form named form1 and another submit button in another form form 2. Is there any value to access the check box name in one form to another form? Regards, Praveena -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Re: Redirecting to another url with parameters using post method

2007-08-28 Thread Praveena Vittal
;Please select a record for $text"; return 1; } if ($text eq 'Re-Activation' && $check_count > 1) { print"Multiple units are not allowed for $text."; return 1; } return 0; } Regards, Praveena Gunnar Hjalmarsson wrote,

Re: Redirecting to another url with parameters using post method

2007-08-27 Thread Praveena Vittal
Hi All, see my comments inline Gunnar Hjalmarsson wrote, On 08/27/2007 07:36 PM: Praveena Vittal wrote: #!/usr/bin/perl use CGI; my $query =new CGI; <some other stuffs will be here--> print $query->redirect('http://google.com'); When i run this code How do

Re: Redirecting to another url with parameters using post method

2007-08-27 Thread Praveena Vittal
Mumia W. wrote, On 08/27/2007 03:58 PM: On 08/27/2007 03:50 AM, Praveena Vittal wrote: hi All, Thanks for all your replies... Actually i tried the small program like below: #!/usr/bin/perl use CGI; my $query =new CGI; <some other stuffs will be here--> What other stuffs? If

Re: Redirecting to another url with parameters using post method

2007-08-27 Thread Praveena Vittal
hi All, Thanks for all your replies... Actually i tried the small program like below: #!/usr/bin/perl use CGI; my $query =new CGI; print $query->redirect('http://google.com'); When i run this code i am getting a blank page with the following printed in

Redirecting to another url with parameters using post method

2007-08-24 Thread Praveena Vittal
Hi , I want to redirect to a different url with the parameters in the post method. Any help is appreciated. Thanks in advance, Praveena -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

perl help

2006-04-25 Thread Praveena Vittal
Hi All, I am newbie of perl joined in this group last month.I could like to know how could i develop my perl programming and my opinion is only reading the materials , and other documents related to perl does not matters.Is there any other way that makes me better in perl like certification

clarification abt system function

2006-04-23 Thread Praveena Vittal
Hi All, I was unable to resolvet the following lines.Could any one please help me resolve the same? I could not find any user defined module named "system". System->get_renv(); System->get_receiver_dir(); Thanks in advance, Praveena -- To unsubscribe, e-mail: [EMAIL PROTECTED] For add

Extracting a bit of a scalar variable

2006-04-20 Thread Praveena Vittal
Hi All, I am newbie to PERL.I think this is a very simple question to ask. Is there any way to print a particular bit of a digit after converting to binary form. Thanks in Advance, Praveena -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]