| FeyX-Active documentation | Contained in the FeyX-Active distribution. |
FeyX::Active::SQL::Select - An active SELECT statement
This is a subclass of Fey::SQL::Select that also consumes the FeyX::Active::SQL role. Please refer to both of those modules for more infomation.
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.
Stevan Little <stevan.little@iinteractive.com>
Copyright 2009-2010 Infinity Interactive, Inc.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| FeyX-Active documentation | Contained in the FeyX-Active distribution. |
package FeyX::Active::SQL::Select; use Moose; our $VERSION = '0.03'; our $AUTHORITY = 'cpan:STEVAN'; extends 'Fey::SQL::Select'; with 'FeyX::Active::SQL'; __PACKAGE__->meta->make_immutable; no Moose; 1; __END__