Help for this page

Select Code to Download


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