| DBIx::Skinny::Pager::Logic::Count |
DBIx::Skinny::Pager::Logic::Count
package Proj::DB; use DBIx::Skinny; use DBIx::Skinny::Mixin modules => ['Pager'];
package main; use Proj::DB;
my $rs = Proj::DB->resultset_with_pager('Count'); # $rs can handle like DBIx::Skinny::SQL. $rs->from(['some_table']); $rs->add_where('foo' => 'bar'); $rs->limit(10); $rs->offset(20); my ($iter, $pager) = $rs->retrieve; # $iter is a DBIx::Skinny::Iterator # $pager is a Data::Page
DBIx::Skinny::Pager::Logic::Count is most normal logic.
Keiji Yoshimi <walf443 at gmail dot com>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| DBIx::Skinny::Pager::Logic::Count |