Query: data::stream::bulk::dbi
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Data::Stream::Bulk::DBI(3pm) User Contributed Perl Documentation Data::Stream::Bulk::DBI(3pm)NAMEData::Stream::Bulk::DBI - N-at-a-time iteration of DBI statement results.VERSIONversion 0.11SYNOPSISuse 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 );DESCRIPTIONThis implementation of Data::Stream::Bulk api works with DBI statement handles, using "fetchall_arrayref" in DBI. It fetches "max_rows" at a time (defaults to 500).ATTRIBUTESsth 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.METHODSget_more See Data::Stream::Bulk::DoneFlag. 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").AUTHORYuval Kogman <nothingmuch@woobling.org>COPYRIGHT AND LICENSEThis 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 v5.14.2 2012-02-14 Data::Stream::Bulk::DBI(3pm)
Related Man Pages |
---|
dbd::sponge(3) - mojave |
data::printer::filter::db(3pm) - debian |
data::stream::bulk(3pm) - debian |
data::stream::bulk::dbi(3pm) - debian |
data::stream::bulk::filter(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
Stream Read And Write Queues |
Any bets? |
Advanced I/O |
Bulk Fixes Selection |
Need Help writing Bulk-Compiling Script |