Re: perl mysql table row insert

2004-07-29 Thread Rhesa Rozendaal
Viswanatha Rao wrote: I am trying to populate a table row in mysql. my $sla_id=100; my $node_type=127.0.0.1; my $operation_type = add a node; my $id = $dbh-quote($sla_id); my $nodeid = $dbh-quote($node_type); my $operation = $dbh-quote($operation_type); The insert works with this piece of code: my

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

2004-07-29 Thread david . effa
FYI: WinZip V9 now encrypts using the AES (Rijndael) U.S. NIST standard using either 128-bit or 256-bit encryption keys. Willem Hengeveld [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/29/2004 10:59 AM To:Ignacz, Alex [EMAIL PROTECTED] cc:[EMAIL PROTECTED], [EMAIL

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

2004-07-29 Thread Burak Gursoy
don't know how to do that with perl. and... do you know how to do in another language? :) I'm also interested in this subject but digging google didn't return me any info :( -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Willem Hengeveld Sent: Thursday,

Perl threads crash perl

2004-07-29 Thread Nadjaf Kuliev
When i tested my IIS vulnerability checker, it works perfecly, but when I added multitasking support, it starts good, bit by bit cpu noise increases then perl crases with unknown error. I didnt use fork(). I used builtin Threads support with async{}. I dont want to make the code public before

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

2004-07-29 Thread Willem Hengeveld
On Thu, Jul 29, 2004 at 08:33:14PM +0300, Burak Gursoy wrote: don't know how to do that with perl. and... do you know how to do in another language? :) I'm also interested in this subject but digging google didn't return me any info :( http://www.info-zip.org/pub/infozip/ download from

perl.exe - Entry Point Not Found

2004-07-29 Thread Glenn M Dowling
My co-worker recently installed ActiveState Perl v5.8.4 on a WinNT 4 member server. When she tried to run a local script, she got the following error message: perl.exe - Entry Point Not Found The procedure entry point GlobalMemoryStatusEx could not be located in the dynamic link library

Re: perl.exe - Entry Point Not Found

2004-07-29 Thread Randy W. Sims
On 7/29/2004 4:37 PM, Glenn M Dowling wrote: My co-worker recently installed ActiveState Perl v5.8.4 on a WinNT 4 member server. When she tried to run a local script, she got the following error message: perl.exe - Entry Point Not Found The procedure entry point GlobalMemoryStatusEx

[Attn: Kevin Gidney] Re: Out of Office AutoReply

2004-07-29 Thread Randy W. Sims
[Despite much hate (and fan) mail...] I am currently out of the office until Monday 16th of August. I will not have access to email or be available on my mobile. I will endeavour to answer any email at the earliest opportunity. If you have an urgent question please call +44 208 758-6300 and ask

[Attn: Gary Begin] Re: Out of Office AutoReply

2004-07-29 Thread Randy W. Sims
I am out on vacation until Monday August 9, 2004. If you need immediate assistance please contact Jason Sanford at ext 6049, Thanks, Gary Gary Begin AVP, Database Administrator Information Technology Banknorth Group mail to: [EMAIL PROTECTED] Please disable your Out of Office AutoReply

[Attn: Jonathan Epstein] Re: Out of Office AutoReply

2004-07-29 Thread Randy W. Sims
I will be out of the office through August 5th, 2004. If you have questions that pertain to the Unit on Biologic Computation, please contact Jack Chen ([EMAIL PROTECTED]). I expect to read mail every few days. I will make a special effort to check and approve postings to the NIH Proteomics

Re: [Attn: Gary Begin] Re: Out of Office AutoReply

2004-07-29 Thread Glenn Darwin
Take this offline to the list please... Glenn Randy W. Sims wrote: I am out on vacation until Monday August 9, 2004. If you need immediate assistance please contact Jason Sanford at ext 6049, Thanks, Gary Gary Begin AVP, Database Administrator Information Technology Banknorth Group mail to:

RE: perl mysql table row update

2004-07-29 Thread Viswanatha Rao
I run an update on a row with following code: my $id = '100'; my $nodeid = localhost; my $nodeid_in = $dbh-quote($nodeid); print (Updating a NODEID=$nodeid_in with SLA ID $id \n); my $sth = $dbh-do(update TableSLA set NodeID=? where ID= $id, {},

Re: perl mysql table row update

2004-07-29 Thread Leigh Sharpe
I think what you want is: $sth=$dbh-do(UPDATE TableSLA set NodeID=\$nodeid\ WHERE ID=\$id\); - Original Message - From: Viswanatha Rao [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: 'Rhesa Rozendaal' [EMAIL PROTECTED] Sent: Friday, July 30, 2004 2:23 PM Subject: RE: perl mysql table row