Re: perl mysql table row update

2004-07-30 Thread Rhesa Rozendaal
Viswanatha Rao wrote: I run an update on a row with following code: my $id = '100'; my $nodeid = localhost; my $nodeid_in = $dbh-quote($nodeid); If you're going to use placeholders, then you don't need to dbh-quote. print (Updating a NODEID=$nodeid_in with SLA ID $id \n); my $sth = $dbh-do(update

Re: Perl threads crash perl

2004-07-30 Thread John Deighan
Seeing as noone else has responded to this, let me simply say that I tried to develop an application using Perl threads, and in my opinion, Perl threads are seriously broken. We had to re-write the application without threads. The main problem was that threads would die, but I found no

RE: Any way to process passwords in Archive::Zip ????

2004-07-30 Thread Burak Gursoy
nope. I'm currently not interested in zip cracking or winzip thingies. Thanks for the infozip link. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Willem Hengeveld Sent: Thursday, July 29, 2004 10:33 PM To: Burak Gursoy Cc: [EMAIL PROTECTED] Subject: Re:

Re: Perl threads crash perl

2004-07-30 Thread StoneBeat
El Viernes 30 Julio 2004 15:09, John Deighan escribió: Seeing as noone else has responded to this, let me simply say that I tried to develop an application using Perl threads, and in my opinion, Perl threads are seriously broken. We had to re-write the application without threads. The main

RE: Perl threads crash perl

2004-07-30 Thread Michael Jung
There is a compiled in limit of 100 threads in Win32 - I ran into this a few weeks back. Please see this thread. http://www.perlmonks.org/index.pl?node_id=373409 --mikej -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Deighan Sent: Friday,

RE: Any way to process passwords in Archive::Zip ???? -- My solution.

2004-07-30 Thread Ignacz, Alex
This is what I did. 1. Went with using the native zip and unzip commands. 2. Used the perl Expect module to deal with the password prompts. ( I know that zip passwords are weak, but this is what the client specified) Here's a snippet if any one is interested. (very watered down to just show how

Re: Perl threads crash perl

2004-07-30 Thread Angelos Karageorgiou
Wl the problem is with the after thread exit clean up code inside the interpreter. If you do not call the $thread-join to clean up and make the number of your threads static and not dynamically created you are fine. Otherwise after a few news and joins things get hairy and the interpeter

RE: perl mysql table row update

2004-07-30 Thread Viswanatha Rao
Great it works, But what does undef do? -Original Message- From: Rhesa Rozendaal [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 5:34 AM To: Viswanatha Rao Cc: [EMAIL PROTECTED] Subject: Re: perl mysql table row update Viswanatha Rao wrote: I run an update on a row with

pattern matching problem

2004-07-30 Thread Craig Cardimon
I am searching text files for the keyword Exhibit or Form followed by a number, a decimal, and any number of letter or numbers within parentheses or not. For example: Exhibit 12 Exhibit 12.1 Exhibit 12(a) Exhibit 12.1(a) Exhibit 12.1(2) Exhibit 12.1(a)(b) Exhibit 12.1(1)(2) Exhibit 12 (a)

RE: pattern matching problem

2004-07-30 Thread Joseph Discenza
Craig Cardimon wrote, on Friday, July 30, 2004 11:36 AM : To: [EMAIL PROTECTED]; : [EMAIL PROTECTED] : Subject: pattern matching problem : : : I am searching text files for the keyword Exhibit or Form followed by a : number, a decimal, and any number of letter or numbers within :

Re: Multi thread Tk problem

2004-07-30 Thread Jeff Griffiths
Arms, Mike wrote: carlo filippini [EMAIL PROTECTED] wrote: I have a quite complex Multi-thread Tk application. A problem has started to appear some time ago. Sometimes the application crashes and I get the following: Just a caution as I did not look at your code, but it is a known issue that