RE: Help with error msg

2011-11-07 Thread Brian Raven
-- Brian Raven > -Original Message- > From: perl-win32-users-boun...@listserv.activestate.com [mailto:perl- > win32-users-boun...@listserv.activestate.com] On Behalf Of Barry Brevik > Sent: 04 November 2011 23:56 > To: perl Win32-users > Subject: Help with error

Re: Help with error msg

2011-11-04 Thread Christopher Taranto
Hi Barry, Most likely your $db->Data() is not returning any values and the @data is not be initialized with a value. my @data = $db -> Data(); Try this to see if it makes a difference with the warning: my @data = (); @data = $db->Data(); Then, you can know if this is the culprit and figure ou

Help with error msg

2011-11-04 Thread Barry Brevik
I've been programming Perl for quite a while, but I've just recently started to 'use strict' because, well it seems like the right thing to do. However, I'm getting this runtime error: "Use of uninitialized value in join or string at test56.pl line 40." Line 40 is the one where the same message i