| DBomb documentation | Contained in the DBomb distribution. |
| 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__