NAME

DBD::Sys::Table - abstract base class of tables used in DBD::Sys

ISA

DBD::Sys::Table
ISA SQL::Eval::Table

DESCRIPTION

DBD::Sys::Table provides an abstract base class to wrap the requirements of SQL::Statement on a table around the pure data collecting actions.

Methods of DBD::Sys::Table

new

Constructor - called from DBD::Sys::Statement::open_table when called from SQL::Statement::opentables. The constructor is always invoked with the owning statement instance as first argument.

fetch_row

Called by SQL::Statement to fetch the single rows. This method return the rows contained in the data attribute of the individual instance.

Methods provided by derived classes

getColNames

This method is called during the construction phase of the table. It must be a static method - the called context is the class name of the constructed object.

collect_data

This method is called when the table is constructed but before the first row shall be delivered via fetch_row().

AUTHOR

Jens Rehsack			Alexander Breibach
CPAN ID: REHSACK
rehsack@cpan.org			alexander.breibach@googlemail.com
http://www.rehsack.de/		http://...

COPYRIGHT

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

The full text of the license can be found in the LICENSE file included with this module.

SUPPORT

Free support can be requested via regular CPAN bug-tracking system. There is no guaranteed reaction time or solution time. It depends on business load. That doesn't mean that ticket via rt aren't handles as soon as possible, that means that soon depends on how much I have to do.

Business and commercial support should be aquired from the authors via preferred freelancer agencies.

SEE ALSO

perl(1), DBI, Module::Build, Module::Pluggable, Params::Util, SQL::Statement.