in reply to DBI fetchrow_hashref issue
Once you do this, you'll see that your second example is basically the same as the first, except it iterates thought the hash instead of dumping the keys all at once.while($info = $sth->fetchrow_hashref) { @case = keys %{ $info }; print @case; }
|
|---|