my $rows = $sth->fetchall_arrayref; say Dumper $rows;
Try fetching each row using ->fetchrow_arrayref.
#while (my $row = $sth->fetchall_arrayref) {
while (my $row = $sth->fetchrow_arrayref) {
say Dumper $row;
}
poj In reply to Re: Querying Hive tables using DBD::ODBC
by poj
in thread Querying Hive tables using DBD::ODBC
by astroboy
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |