in reply to Improving on MS-SQL over DBI and DBD::ODBC
$sth->execute; my %row; $sth->bind_columns( \( @row{ @{$sth->{NAME_lc} } } )); while ($sth->fetch) { print "$row{region}: $row{sales}\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Improving on MS-SQL over DBI and DBD::ODBC
by radiantmatrix (Parson) on Nov 24, 2004 at 19:04 UTC | |
by jZed (Prior) on Nov 24, 2004 at 19:11 UTC |