in reply to Re^2: Multiple records fetches issue using DBD::ODBC in Perl
in thread Multiple records fetches issue using DBD::ODBC in Perl
I am a bit flummoxed as to how you get -1 as the result. What does this do?
my $results = $sql->execute() or die("EXECUTE FAILED $!"); my $array_ref = $results->fetchall_arrayref(); pp $array_ref;
In Section
Seekers of Perl Wisdom