in reply to HTML::Template-Displaying DB Records
I have a program that contains code similar to what you show, but the difference I noticed is instead of:my $rows = $dbh->selectall_arrayref($SQL,{Columns =>{}}) ; print $rows; <font color="red">(FLow is fine here too-this stateme +nt prints ARRAY(0x1ed0bb0) )</font> foreach (@$rows) { print "I say $_\n"; (Problem here-no output on screen.) }
my program uses ....foreach (@$rows) {
{note the additional curly brackets} ... could that be it? It's easy enough to try. And if it doesn't work, it seems to me that your problem lies with DBI, not HTML::TEMPLATE, given where things seems to crap out.foreach (@{$rows}) {
Hagbone
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: HTML::Template-Displaying DB Records
by perrin (Chancellor) on May 25, 2004 at 03:41 UTC |