| Fey documentation | Contained in the Fey distribution. |
Fey::Role::SQL::ReturnsData - A role for SQL queries which return data (SELECT, UNION, etc)
version 0.40
use Moose; with 'Fey::Role::ReturnsData';
Classes which do this role represent an object which returns data from a
query, such as SELECT, UNION, etc.
This role provides no methods.
Returns true.
See Fey for details on how to report bugs.
Dave Rolsky <autarch@urth.org>
This software is Copyright (c) 2011 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
| Fey documentation | Contained in the Fey distribution. |
package Fey::Role::SQL::ReturnsData; BEGIN { $Fey::Role::SQL::ReturnsData::VERSION = '0.40'; } use strict; use warnings; use namespace::autoclean; use Moose::Role; # This doesn't actually work with Fey::Role::SetOperation in the mix. #requires 'select_clause_elements'; 1; # ABSTRACT: A role for SQL queries which return data (SELECT, UNION, etc)
__END__