The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

DBIx::DataModel::Statement::Oracle - Statement for interacting with DBD::Oracle

SYNOPSIS

  DBIx::DataModel->Schema("MySchema",
     statement_class => "DBIx::DataModel::Statement::Oracle",
  );

  my $rows = $source->select(
    ...,
    -limit  => 50,
    -offset => 200,
  );

DESCRIPTION

This subclass redefines some parent methods from DBIx::DataModel::Statement in order to take advantage of "Scrollable Cursor Methods" in DBD::Oracle.

This is interesting for applications that need to do pagination within result sets, because Oracle has no support for LIMIT/OFFSET in SQL. So here we use some special methods of the Oracle driver to jump to a specific row within a resultset, and then extract a limited number of rows.

The API is exactly the same as other, regular DBIx::DataModel implementations.

AUTHOR

Laurent Dami, <laurent.dami AT etat ge ch>, April 2012.

COPYRIGHT AND LICENSE

Copyright 2011 by Laurent Dami.

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