| DBomb documentation | Contained in the DBomb distribution. |
DBomb::Query::RightJoin - Abstracts a RIGHT OUTER JOIN
A subclass of DBomb::Query::Join.
None.
| DBomb documentation | Contained in the DBomb distribution. |
package DBomb::Query::RightJoin;
use strict; use warnings; our $VERSION = '$Revision: 1.3 $'; use base qw(DBomb::Query::Join); sub init { my $self = shift; $self->SUPER::init(@_); $self->type('RIGHT'); return $self; } 1; __END__