in reply to Re^2: Tie'ing a dbh result set?
in thread Tie'ing a dbh result set?
If you can guarantee that the array will only be accessed:
foreach my $result_ref (@array) { process($result_ref); }
Otherwise, please explain how you make it function as an iterator.
|
|---|