Subject: is there a bind_hash()? Hi all,
Is there a CPAN module out there that implements something like bind_hash() from this article: http://www.perl.com/pub/a/2001/03/dbiokay.html My searches aren't coming up with anything. Basically I'm looking for something like this snippet: @[EMAIL PROTECTED] = (); $sth->bind_columns(map { \$results{$_} } @fields); wrapped in a nice little interface. Thanks, -Todd Have you looked at fetchrow_hashref or fetchall_hashref? jwm