|
NAMETeng::Plugin::Pager::MySQLFoundRows - Paginate with SQL_CALC_FOUND_ROWS SYNOPSIS package MyApp::DB;
use parent qw/Teng/;
__PACKAGE__->load_plugin('Pager::MySQLFoundRows');
package main;
my $db = MyApp::DB->new(dbh => $dbh);
my $page = $c->req->param('page') || 1;
my ($rows, $pager) = $db->search_with_pager('user' => {type => 3}, {page => $page, rows => 5});
DESCRIPTIONThis is a helper class for pagination. This helper only supports MySQL. Since this plugin uses SQL_CALC_FOUND_ROWS for calculate total entries. METHODS
This method returns ArrayRef[Teng::Row] and instance of Teng::Plugin::Pager::Page. AUTHORTokuhiro Matsuno
|