Take me over?
The maintainer of this distribution is looking for someone to take over!
If you're interested then please contact them via
email.
NAME
Fey::SQL::Where - Represents a "stand-alone" WHERE clause
VERSION
version 0.43
SYNOPSIS
my $sql = Fey::SQL->new( dbh => $dbh );
# WHERE Machine.machine_id = 2
$sql->where( $machine_id, '=', 2 );
DESCRIPTION
This class represents a stand-alone WHERE
clause. This allows you pass a condition as part of an outer join.
METHODS
This class provides the following methods:
Constructor
To construct an object of this class, call $query->where()
on a Fey::SQL
object.
$where->where()
See the Fey::SQL section on WHERE Clauses for more details.
$where->bind_params()
See the Fey::SQL section on Bind Parameters for more details.
ROLES
This class does Fey::Role::SQL::HasWhereClause
role.
BUGS
See Fey for details on how to report bugs.
AUTHOR
Dave Rolsky <autarch@urth.org>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2011 - 2015 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)