GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Teng::Plugin::SQLPager(3) User Contributed Perl Documentation Teng::Plugin::SQLPager(3)

Teng::Plugin::SQLPager - Paginate with SQL

    package My::DB;
    use parent qw/Teng/;
    __PACKAGE__->load_plugin(qw/SQLPager/);

    # in your application
    $db->search_by_sql_with_pager(
        q{SELECT * FROM member ORDER BY id DESC},
        [],
        {page => 1, rows => 20}
    );

This module searches database by SQL with paginate.

search_by_sql_with_pager method adds LIMIT clause automatically.

You can pass arguments as following.

$sql: Str
This is a SQL statement in string.
$binds: ArrayRef[Str]
This is a bind values in arrayref.
$opt: HashRef
Options for search_by_sql_with_pager. Important options are 'page' and 'rows'.

page is a current page number. rows is a entries per page.

$table_name: Str
You can pass a table name.

This argument is optional. If you don't pass a table name, Teng guess table name automatically.

This module does not work with Oracle since Oracle does not support limit clause.
2020-03-25 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.