2 messages in com.mysql.lists.perluninitialized value in concatenation
FromSent OnAttachments
W P12 Nov 2001 13:30 
Jeremy Zawodny12 Nov 2001 13:57 
Subject:uninitialized value in concatenation
From:W P (unth@untheism.org)
Date:11/12/2001 01:30:31 PM
List:com.mysql.lists.perl

i'm just getting started, learning about DBM and such, and i can't figure out
what is wrong with this snippet of code. it says that there is "use of an
uninitialized value in concatenation (.) at line 35. thank you in advance for helping. code:

33 while(@row = $sth->fetchrow_array) 34 { 35 foreach $re (@row) { print $re . "\t"; } 36 print "\n"; 37 }