in reply to Re^2: Splitting \0
in thread Splitting \0

Where/when did you print Dumper($fd)? You say it is undef, but as i read, it must contain some data. FunkyMonk is right, it must read print Dumper(\%fd). Could you please put that just before the loop construct?
And if it's true that you used print Dumper($fd), it shows you didn't use strict; and you will have to face the inqusitors :-)


holli, /regexed monk/

Replies are listed 'Best First'.
Re^4: Splitting \0
by FunkyMonk (Bishop) on Jun 01, 2007 at 11:46 UTC
    It isn't a reference!

    print Dumper \%fd;
Re^4: Splitting \0
by Quicksilver (Scribe) on Jun 01, 2007 at 12:04 UTC

    It looks a touch different with that:

    $VAR1 = { 'txtSQL' => 'SELECT Listname,DateCreated,DateDeleted,DateRenamed,OldListname,DateChecked FROM lists

    I've also replaced the strict ;-)

      Now I'm entirely confused. Shouldnt %fd contain the arguments you get? Mmh, ok. Time lo lean back and take a breath. Let's start over.

      What exactly are you trying to achieve? Please make sure to show all relevant parts of your code, best something that runs for itself and demonstrates the problem.


      holli, /regexed monk/