package Fey::SQL::Delete; use strict; use warnings; use Fey::Validate qw( validate validate_pos SCALAR UNDEF OBJECT DBI_TYPE ); use Scalar::Util qw( blessed ); use Moose; use MooseX::SemiAffordanceAccessor; use MooseX::StrictConstructor; with 'Fey::Role::SQL::HasBindParams', 'Fey::Role::SQL::HasWhereClause', 'Fey::Role::SQL::HasOrderByClause', 'Fey::Role::SQL::HasLimitClause'; sub delete { return $_[0] } { my $spec = { type => OBJECT, callbacks => { 'is a (non-alias) table' => sub { $_[0]->isa('Fey::Table') && ! $_[0]->is_alias() }, }, }; sub from { my $self = shift; my $count = @_ ? @_ : 1; my (@tables) = validate_pos( @_, ($spec) x $count ); $self->{tables} = \@tables; return $self; } } { my @spec = ( DBI_TYPE ); sub sql { my $self = shift; my ($dbh) = validate_pos( @_, @spec ); return ( join ' ', $self->delete_clause($dbh), $self->where_clause($dbh), $self->order_by_clause($dbh), $self->limit_clause($dbh), ); } } sub delete_clause { return 'DELETE FROM ' . $_[0]->_tables_subclause( $_[1] ); } sub _tables_subclause { return ( join ', ', map { $_[1]->quote_identifier( $_->name() ) } @{ $_[0]->{tables} } ); } sub bind_params { my $self = shift; return $self->_where_clause_bind_params(); } no Moose; __PACKAGE__->meta()->make_immutable(); 1; __END__ =head1 NAME Fey::SQL::Delete - Represents a DELETE query =head1 SYNOPSIS my $sql = Fey::SQL->new_delete(); # DELETE FROM Part # WHERE Part.name LIKE '%Widget' $sql->delete(); $sql->from($Part); $sql->where( $name, 'LIKE', '%Widget' ); print $sql->sql($dbh); =head1 DESCRIPTION This class represents a C query. =head1 METHODS This class provides the following methods: =head2 Constructor To construct an object of this class, call C<< $query->delete() >> on a C object. =head2 $delete->delete() This method is basically a no-op that exists to so that L has something to call after it constructs an object in this class. =head2 $delete->from(...) This method specifies the C clause of the query. It expects one or more L objects (not aliases). Most RDBMS implementations only allow for a single table here, but some (like MySQL) do allow for multi-table deletes. =head2 $delete->where(...) See the L for more details. =head2 $delete->order_by(...) See the L for more details. =head2 $delete->limit(...) See the L for more details. =head2 $delete->sql() Returns the full SQL statement which this object represents. A DBI handle must be passed so that identifiers can be properly quoted. =head2 $delete->bind_params() See the L for more details. =head2 $delete->delete_clause() Returns the C clause portion of the SQL statement as a string. =head2 $delete->where_clause() Returns the C clause portion of the SQL statement as a string. =head2 $delete->order_by_clause() Returns the C clause portion of the SQL statement as a string. =head2 $delete->limit_clause() Returns the C clause portion of the SQL statement as a string. =head1 ROLES This class does C, C, C, and C roles. =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