my $rows = $dbh->selectall_arrayref($SQL,{Columns =>{}}) ; print $rows; (FLow is fine here too-this stateme +nt prints ARRAY(0x1ed0bb0) ) foreach (@$rows) { print "I say $_\n"; (Problem here-no output on screen.) } #### foreach (@$rows) { #### foreach (@{$rows}) {