in reply to How to retrieve multiple output sets using DBI

This stackoverflow question suggests this might work if you are using ODBC.

do { while (my @row = $sth->fetchrow_array()) { print "@row\n"; } } while ($sth->{odbc_more_results});
poj

Replies are listed 'Best First'.
Re^2: How to retrieve multiple output sets using DBI
by roho (Bishop) on Feb 08, 2019 at 18:48 UTC
    Thank you, poj. That worked fine!

    "It's not how hard you work, it's how much you get done."