DBomb::Query::LeftJoin - Abstracts a LEFT OUTER JOIN


DBomb documentation Contained in the DBomb distribution.

Index


Code Index:

NAME

Top

DBomb::Query::LeftJoin - Abstracts a LEFT OUTER JOIN

SYNOPSIS

Top


DBomb documentation Contained in the DBomb distribution.

package DBomb::Query::LeftJoin;

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('LEFT');
    return $self;
}


1;
__END__