| Fey documentation | view source | Contained in the Fey distribution. |
Fey::Role::SQL::HasWhereClause - A role for queries which can include a WHERE clause
version 0.40
use Moose; with 'Fey::Role::SQL::HasWhereClause';
Classes which do this role represent a query which can include a
WHERE clause.
This role provides the following methods:
See the Fey::SQL section on WHERE Clauses for more details.
See the Fey::SQL section on WHERE Clauses for more details.
Returns the WHERE clause portion of the SQL statement as a string. The
first argument, a database handle, is required. If the second argument is
true, the string returned will not start with "WHERE", it will simply start
with the where clause conditions.
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 | view source | Contained in the Fey distribution. |