my $sth = $dbh->prepare('select * from songs limit 5'); $sth->execute; tie my @data, Tie::STHRows, $sth; my $tmpl = q| |; my $template = HTML::Template->new(scalarref => \$tmpl); $template->param(data => \@data); print $template->output;