Re: Modify excel worrkbook in perl

2010-04-26 Thread luke devon
...@iglu.org.il To: beginners@perl.org Cc: luke devon luke_de...@yahoo.com Sent: Sunday, April 25, 2010 21:12:59 Subject: Re: Modify excel worrkbook in perl On Sunday 25 Apr 2010 10:12:02 luke devon wrote: Hi I need to modify a excel file in perl and for which i installed perl in ubuntu. 1. Open

Modify excel worrkbook in perl

2010-04-25 Thread luke devon
Hi I need to modify a excel file in perl and for which i installed perl in ubuntu. 1. Open a existing excel file 2. delete an unwanted Sheet called summary 3. and i want to insert some data into range of cells ( B1:B11) Could you please tell me what is the most suitable perl module that

Re: delete 20 000 records in oracle from perl

2009-08-17 Thread luke devon
: Raymond Wan r@aist.go.jp To: luke devon luke_de...@yahoo.com Cc: Perl beginners@perl.org Sent: Monday, August 17, 2009 14:12:27 Subject: Re: delete 20 000 records in oracle from perl Hi Luke, luke devon wrote: I wanted to delete some unwanted data in one of my oracle database.20 000

delete 20 000 records in oracle from perl

2009-08-17 Thread luke devon
Hi I wanted to delete some unwanted data in one of my oracle database.20 000 of records are there. This is actually on production . manually to delete a record , it takes 2 mins of time. So now i decided to write a perl script to do this function by learning on the web. Can somebody give me

Re: delete 20 000 records in oracle from perl

2009-08-17 Thread luke devon
r@aist.go.jp To: luke devon luke_de...@yahoo.com Cc: Perl beginners@perl.org Sent: Monday, August 17, 2009 14:39:12 Subject: Re: delete 20 000 records in oracle from perl Hi Luke, luke devon wrote: Thanks for the reply . Yes , when we going to delete those records , CPU is going high.So

Use of uninitialized value in concatenation (.) or string

2008-07-25 Thread luke devon
Dear Friends, Following error i am getting while its functioning. Could you please help me to find out what the error is ? Use of uninitialized value in concatenation (.) or string at /xxx.pl line 18, STDIN line 1. Use of uninitialized value in concatenation (.) or string at /xxx.pl line 21,

Re: Perl script doesnt behave well

2008-07-21 Thread luke devon
; } } }else { print \n; } my $sth-finish(); $dbh-disconnect(); Thank you Luke. - Original Message From: Rob Dixon [EMAIL PROTECTED] To: Perl beginners@perl.org Cc: luke devon [EMAIL PROTECTED] Sent: Monday, July 14, 2008 23:27:21 Subject: Re: Perl script doesnt behave well luke

Re: Perl script doesnt behave well

2008-07-15 Thread luke devon
to a idle mode or sleep mode , coz just for testing i don't send many request at a time. just a single test request made for the servers. Thank you Luke - Original Message From: Rob Dixon [EMAIL PROTECTED] To: Perl beginners@perl.org Cc: luke devon [EMAIL PROTECTED] Sent: Monday

Perl script doesnt behave well

2008-07-14 Thread luke devon
Hi, I am using perl script to handle some function of squid redirector program . Actually its working fine. But after some time , that functions goes off. That's meant VALUE-A doesnt comes in to the request. I checked the DB , it also fine. CPU also nothing Can some body help me please ?

Re: Perl script doesnt behave well

2008-07-14 Thread luke devon
could you please direct me how could I implement those steps in to the code ? - Original Message From: Thomas Bätzler [EMAIL PROTECTED] To: Perl beginners@perl.org Cc: luke devon [EMAIL PROTECTED] Sent: Monday, July 14, 2008 16:05:21 Subject: RE: Perl script doesnt behave well luke

Re: Filtering contetn in a variable

2008-07-11 Thread luke devon
: Wednesday, July 9, 2008 20:33:45 Subject: Re: Filtering contetn in a variable [ Please stop top-posting!!! ] luke devon wrote: Li, Jialin wrote: luke devon wrote: I am storing IP in to a varable , $ip=172.22.8.10 \-; but i wanted to filter out only the ip . i am not so sure what the input

Filtering contetn in a variable

2008-07-09 Thread luke devon
Hi I am storing IP in to a varable ,  $ip=172.22.8.10 \-; but i wanted to filter out only the ip . how can i do that ? please help Thank you Luke Send instant messages to your online friends http://uk.messenger.yahoo.com

Re: Filtering contetn in a variable

2008-07-09 Thread luke devon
Thnks for the reply, I am receiving IP value as 192.168.10.5/ - From here , i wanted to filtered out the exact ip. i tried your example , but it didnt work. please help - Original Message From: Li, Jialin [EMAIL PROTECTED] To: luke devon [EMAIL PROTECTED] Cc: Perl beginners@perl.org

Re: Filtering contetn in a variable

2008-07-09 Thread luke devon
Thnks for the reply, I am receiving IP value as 192.168.10.5/ - From here , i wanted to filtered out the exact ip. i tried your example , but it didnt work. please help - Original Message From: Li, Jialin [EMAIL PROTECTED] To: luke devon [EMAIL PROTECTED] Cc: Perl beginners@perl.org

Re: Filtering contetn in a variable

2008-07-09 Thread luke devon
Thnks for the reply,   I am receiving IP value as 192.168.10.5/ -   From here , i wanted to filtered out the exact ip. i tried your example , but it didnt work. please help - Original Message From: yitzle [EMAIL PROTECTED] To: luke devon [EMAIL PROTECTED] Cc: Perl beginners@perl.org

Define NULL value in Perl

2008-07-08 Thread luke devon
Hi How can we define NULL values in perl ? for instance if I wanted to assign a NULL value for a variable called $x= , how would it be in the code ? Thank you Luke Send instant messages to your online friends http://uk.messenger.yahoo.com

closing dbh with active statement handles

2008-07-08 Thread luke devon
Hi Friends, Here, I am trying to connect sqlite DB and access some data for matching values with STDIN.But when i try to debug the code it gives following message. I went through google , and couldn't find any solution yet. Can some body help me pelase. closing dbh with active statement

mysql data store in to a FILE

2008-07-03 Thread luke devon
Hi , I just tried to store some mysql-queried data in to a file. but it wont work. Actually i wanted to do not just writing , it should be APPEND at each time when that perl scripts runs. Can some body help me , if you all can provide me a sample or a example would be a great help Many

Problem with Arrays

2008-06-23 Thread luke devon
Hi , I tried to capture some data in STDIN and wanted compare with a Queried data form a database. When i run the script , there is some errors. Scalar value @array[2] better written as $array[2] at hell.pl line 22. Scalar value @array[1] better written as $array[1] at hell.pl line 31. Scalar

Re: Problem with Arrays

2008-06-23 Thread luke devon
have not been declared. You need to declare the @array and $temp as my @array, my $temp. Also, the second element of @array is $array[1] not @array[1]. Mimi On 23/06/2008, luke devon [EMAIL PROTECTED] wrote: Hi , I tried to capture some data in STDIN and wanted compare with a Queried data form

Filtered out a IP in a URL

2008-06-18 Thread luke devon
Dear Friends, In squid URL-rewriting , I wanted to add some third party parameters to the URL and wanted to filtered out IP which assigned for client ( Client -IP ). Rather than having a shell script , I supposed to do a perl script for that purpose . But it seems bit tricky, How can I do this

Capture URL parameter

2008-06-17 Thread luke devon
Dear Friends I am going to capture some values/parameters which are comes trough URL. like Client_IP , domain name .etc. But i have no idea how it would be done by perl. Here i am going to use bcoz this program based on squid-cache server. Can somebody help me on this please. Many Thanks

Re: Capture URL parameter

2008-06-17 Thread luke devon
you Luke. - Original Message From: Octavian Rasnita [EMAIL PROTECTED] To: luke devon [EMAIL PROTECTED]; Perl beginners@perl.org Sent: Tuesday, June 17, 2008 14:32:34 Subject: Re: Capture URL parameter From: luke devon [EMAIL PROTECTED] Dear Friends I am going to capture some values

Perl proxy - adding user defined HEADERS

2006-11-10 Thread luke devon
Hi , I wanted to put a perl script into the parameter of squid redirect module, which should have a capable of connecting to another server and passes another user defined HEADER into the squid back to get access web proxy and should be handling more threads for all the users . How it

Fwd: WAP development from perl

2006-08-29 Thread luke devon
i need your help , could you please reply on this mail ?Note: forwarded message attached. Send instant messages to your online friends http://uk.messenger.yahoo.com ---BeginMessage--- Hi , as a beginner , if i asked , how can i develop WAP sites by based on perl language ? , do u have any

WAP development from perl

2006-08-27 Thread luke devon
Hi , as a beginner , if i asked , how can i develop WAP sites by based on perl language ? , do u have any possibility to help me ? Does that perl are cgi ? Can i see any sample of WAP sites or WAP exmples ? Is there any books to be recomended ? When wew consider about WAP there is main two

Add values into Tunnel stream

2006-05-20 Thread luke devon
Hi , This is really about make a tunnel with another server. When i googled i found a sample perl script that function very nicely. http://migo.sixbit.org/pinkhas/nettunnel it works actually. basically , i tested that with a WEB Proxy . it proxied and i can browse the internet with my