in reply to Re: DBIx::Simple opinion..
in thread DBIx::Simple opinion..
my (%row, @rows);
$sth->bind_columns( \( @row{ @{$sth->{NAME_lc} } } ));
while( $sth->fetch ) {
push @rows, { %row };
}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: DBIx::Simple opinion..
by Juerd (Abbot) on Sep 02, 2007 at 21:11 UTC |