RE: perl script calls batch file

2006-08-06 Thread Shourya Sengupta
From: Todd W [mailto:[EMAIL PROTECTED] Sent: Sunday, August 06, 2006 8:27 AM To: beginners@perl.org Subject: Re: perl script calls batch file ""Dr.Ruud"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Shourya Sengupta [EMAIL PROTECTED] schreef: &g

Re: book to learn perl

2006-08-04 Thread Shourya Sengupta
Hi Irfan, If somebody is a beginner (in true sense) in perl the following link will be really useful. Check it out. http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib /Teach%20Yourself%20Perl%205%20in%2021%20Days%2C%20by%20David%20Till%2C% 20Second%20Edition/ Regards, Shour

RE: perl script calls batch file

2006-08-04 Thread Shourya Sengupta
file "Shourya Sengupta" schreef: > My perl program calls a batch file on a remote machine. > Now my question is how to return a value from that batch script and > how to grab it in the perl file? What kind of value? [Signature separator missing. Get rid of any garbage tail, suc

RE: perl script calls batch file

2006-08-03 Thread Shourya Sengupta
, 2006 11:56 PM To: Shourya Sengupta; beginners@perl.org Subject: RE: perl script calls batch file -Original Message- From: Shourya Sengupta [mailto:[EMAIL PROTECTED] Sent: Thursday, August 03, 2006 2:15 PM To: beginners@perl.org Subject: perl script calls batch file Hi, My perl program

perl script calls batch file

2006-08-03 Thread Shourya Sengupta
Hi, My perl program calls a batch file on a remote machine. Now my question is how to return a value from that batch script and how to grab it in the perl file? Regards, Shourya Infosys Technologies Ltd. Bangalore Extn: 62998 CAUTION - Disclaimer * This e-mail

update statement execution in perl

2006-07-31 Thread Shourya Sengupta
Hi, I am using Win32::ODBC to connect to the database from a perl program. I have to execute an update statement. I have defined it as my $sql; $sql = ""; how to execute it? Regards, Shourya Infosys Technologies Ltd. Bangalore Extn: 62998 CAUTION - Disclaimer *

perl script from vbscript

2006-07-25 Thread Shourya Sengupta
How do I call a perl script from a vb script? Regards, Shourya Infosys Technologies Ltd. Bangalore Extn: 62998 CAUTION - Disclaimer * This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely for the use of the addressee(s). If you are not t

perl execution through vbscript

2006-07-24 Thread Shourya Sengupta
I am executing a perl script through a vbscript. The vbscript is stored on a windows machine and the perl script on the unix machine. We are connecting to the unix machine through a tool whuch we have built(uses ssh protocol) and executing the perl script. The command we are using is this :(in the

XML package in perl

2006-07-24 Thread Shourya Sengupta
In a perl program I am using the XML package. Now this package has to be copied to the machine where my perl script resides, before running the script. I am using ftp to copy the package(file by file using mput command). Do I have to copy the files in ASCII mode or in binary mode? Regards, Shoury

RE: Object oriented programming with perl

2006-07-20 Thread Shourya Sengupta
Thanks a lot Joshua and Timothy. This was exactly what I was looking for. Your responses will help me a lot. Regards, Shourya -Original Message- From: Joshua Colson [mailto:[EMAIL PROTECTED] Sent: Friday, July 21, 2006 12:57 AM To: Shourya Sengupta Cc: beginners@perl.org Subject: RE

RE: Object oriented programming with perl

2006-07-20 Thread Shourya Sengupta
Hi Joshua, Can you make it a bit clear? Thanks, Shourya -Original Message- From: Joshua Colson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 20, 2006 9:59 PM To: Shourya Sengupta Cc: beginners@perl.org Subject: Re: Object oriented programming with perl On Thu, 2006-07-20 at 15:40

Object oriented programming with perl

2006-07-20 Thread Shourya Sengupta
In a particular perl program if we want to declare objects of a class we have to include the class at the top of the program like use The perl interpreter by default searches for the package in a specific path. (in perl/lib) Suppose the package is installed in a different path. Can we then me