Help for this page

Select Code to Download


  1. or download this
     my $hoh = $dbh->selectall_hashref($sql, $index_column);
    
  2. or download this
    $hoh = {
        1 => {id => 1, col2=>"abc", col3=>"def",    col4=>"ghi"},
        2 => {id => 2, col2=>"lmn", col3=>"opq",    col4=>"rst"},
    }
    
  3. or download this
     my $aoa = $dbh->selectall_arrayrefref($sql);
    
  4. or download this
    $aoa = [
        [1,"abc", "def", "ghi"],
        [2,"lmn", "opq", "rst"],
    ]
    
  5. or download this
     my $aoh = $dbh->selectall_arrayref($sql, {Slice => {}});
    
  6. or download this
    $aoh = [
        {id => 1, col2=>"abc", col3=>"def",    col4=>"ghi"},
        {id => 2, col2=>"lmn", col3=>"opq",    col4=>"rst"},
    ]