>>>>> "Steve" == Steve Howard <[EMAIL PROTECTED]> writes:
Steve> $row = $select->bind_columns(undef, \$column1, \$column2......
This is weird, but it works:
$rc = $sth->bind_columns(\@column{qw(one two three four five)});
Now $column{one} is the first column, and $column{two} is the second
column. Very cool, and much faster than the fetchrow_hashref, since
we aren't rebuilding the hash each time... instead the fetch goes
right into the existing scalars which were bound.
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!