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