Help for this page

Select Code to Download


  1. or download this
    while (!$recordset->eof) {
         # code to set scalars equal to fields in $recordset
         $hashofrecordset{$id} = { foo => $foo, bar => $bar, baz => $baz, 
    +};
    
    }
    
  2. or download this
         foreach $outerkey ( sort keys %hashofrecordset ) {
              print "\n$hashofrecordset{$outerkey}\n";
    ...
              }
              print "\n";
         }