- or download this
my $sth = $dbh->prepare('select * from songs limit 5');
$sth->execute;
...
my $template = HTML::Template->new(scalarref => \$tmpl);
$template->param(data => \@data);
print $template->output;
- or download this
print Dumper \@data;
__END__
...
$VAR1->[0],
$VAR1->[0]
];
- or download this
print Dumper $_ for @data;
__END__
...
'year' => '1978',
'id' => '5'
};
- or download this
sub FETCH {
my $self = shift;
...
my %row = %{$self->[1]};
return {%row};
}