package Fey::SQL::Where; use strict; use warnings; use Moose; use MooseX::SemiAffordanceAccessor; use MooseX::StrictConstructor; with 'Fey::Role::SQL::HasBindParams', 'Fey::Role::SQL::HasWhereClause'; sub bind_params { my $self = shift; return $self->_where_clause_bind_params(); } no Moose; __PACKAGE__->meta()->make_immutable(); 1; __END__ =head1 NAME Fey::SQL::Where - Represents a "stand-alone" WHERE clause =head1 SYNOPSIS my $sql = Fey::SQL->new( dbh => $dbh ); # WHERE Machine.machine_id = 2 $sql->where( $machine_id, '=', 2 ); =head1 DESCRIPTION This class represents a stand-alone C clause. This allows you pass a condition as part of an outer join. =head1 METHODS This class provides the following methods: =head2 Constructor To construct an object of this class, call C<< $query->where() >> on a C object. =head2 $where->where() See the L for more details. =head2 $where->bind_params() See the L for more details. =head1 ROLES This class does C role. =head1 AUTHOR Dave Rolsky, =head1 BUGS See L for details on how to report bugs. =head1 COPYRIGHT & LICENSE Copyright 2006-2008 Dave Rolsky, All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut