Re: Access MDF files

2006-08-09 Thread Peter Hoose
- Original Message - From: "Mike Blezien" <[EMAIL PROTECTED]> To: "Perl List" Sent: Wednesday, August 09, 2006 11:20 AM Subject: Access MDF files Hello, is there a Perl module available to obtain data from Access .mdf files ? thx's Mike(mickalo)Blezien -- To unsubscribe, e-mail: [

Re: Newbie Perl Question

2006-07-17 Thread Peter Hoose
I'm pretty new myself, as such I like to see a little more error checking to accomodate for mine (or other people's) mistakes, here's one similar to Rob's but with some additional error checking that you might want, basically the main difference is that it expects your lines to be formatted like

Re: processing a hash of a hash of a hash

2006-07-06 Thread Peter Hoose
foreach $key2 (keys %{$top{$key{$key1}}}){ # line 522 Try: foreach $key2 (keys %{$top{$key}{$key1}}){ # line 522 * Maybe it's a missing right curly brace around $key ~P - Original Message - From: "Ryan Moszynski" <[EMAIL PROTECTED]> To: Sent: Thursday, July 06, 2006 5:14 PM S