DBomb::Query::RightJoin - Abstracts a RIGHT OUTER JOIN


DBomb documentation Contained in the DBomb distribution.

Index


Code Index:

NAME

Top

DBomb::Query::RightJoin - Abstracts a RIGHT OUTER JOIN

SYNOPSIS

Top

DESCRIPTION

Top

A subclass of DBomb::Query::Join.

METHODS

Top

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__