Help for this page
my $rows = $dbh->selectall_arrayref($SQL,{Columns =>{}}) ; ... foreach (@$rows) { print "I say $_\n"; (Problem here-no output on screen.) }
foreach (@$rows) {
foreach (@{$rows}) {