in reply to DBI - MySQL Help Needed
For multiple rows in hash references:my $row = $sth->fetchrow_hashref; Then grab your values with: $row->{'my_column'}
Take a look at the function definitions that come with DBI for explicit definitions, but you can fetch rows in a number of ways with hashes and arrays. DBI ROX!!!while(my $row = $sth->fetchow_hashref) $row->{'my_column'}
|
|---|