Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Data::Stream::Bulk::DBI

Name Data::Stream::Bulk::DBI
Version 0.11
Located at /usr/share/perl5
File /usr/share/perl5/Data/Stream/Bulk/DBI.pm
Is Core No
Search CPAN for this module Data::Stream::Bulk::DBI
Documentation Data::Stream::Bulk::DBI
Module Details Data::Stream::Bulk::DBI


NAME

Data::Stream::Bulk::DBI - N-at-a-time iteration of DBI statement results.


VERSION

version 0.11


SYNOPSIS

        use Data::Stream::Bulk::DBI;
        my $sth = $dbh->prepare("SELECT hate FROM sql"); # very big resultset
        $sth->execute;
        return Data::Stream::Bulk::DBI->new(
                sth => $sth,
                max_rows => $n, # how many at a time
                slice => [ ... ], # if you want to pass the first param to fetchall_arrayref
        );


DESCRIPTION

This implementation of the Data::Stream::Bulk manpage api works with DBI statement handles, using DBI/fetchall_arrayref.

It fetches max_rows at a time (defaults to 500).


ATTRIBUTES

sth
The statement handle to call fetchall_arrayref on.

slice
Passed verbatim as the first param to fetchall_arrayref. Should usually be undef, provided for completetness.

max_rows
The second param to fetchall_arrayref. Controls the size of each buffer.

Defaults to 500.


METHODS

get_more
See the Data::Stream::Bulk::DoneFlag manpage.

Calls fetchall_arrayref to get the next chunk of rows.

all
Calls fetchall_arrayref to get the raminder of the data (without specifying max_rows).


AUTHOR

Yuval Kogman <nothingmuch@woobling.org>


COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Yuval Kogman.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026