The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

DBIx::Inspector::Iterator - iterator for DBIx::Inspector

DESCRIPTION

Iterator class for DBIx::Inspector. This is very useful for saving memory space.

METHODS

my $row = $iter->next();

Get next row.

This method returns row object. Return undef if finished.

my @rows = $iter->all;

Get all elements in iterator at once.

SEE ALSO

DBIx::Inspector