1 package DBIx::Class::Storage::DBI::Oracle::WhereJoins;
6 use base qw( DBIx::Class::Storage::DBI::Oracle::Generic );
9 __PACKAGE__->sql_maker_class('DBIx::Class::SQLMaker::OracleJoins');
19 DBIx::Class::Storage::DBI::Oracle::WhereJoins - Oracle joins in WHERE syntax
20 support (instead of ANSI).
24 This module is used with Oracle < 9.0 due to lack of support for standard
29 DBIx::Class should automagically detect Oracle and use this module with no
34 This class implements Oracle's WhereJoin support. Instead of:
36 SELECT x FROM y JOIN z ON y.id = z.id
40 SELECT x FROM y, z WHERE y.id = z.id
42 It should properly support left joins, and right joins. Full outer joins are
43 not possible due to the fact that Oracle requires the entire query be written
44 to union the results of a left and right join, and by the time this module is
45 called to create the where query and table definition part of the SQL query,
46 it's already too late.
50 See L<DBIx::Class::SQLMaker::OracleJoins> for implementation details.
54 Does not support full outer joins.
61 =item L<DBIx::Class::SQLMaker>
63 =item L<DBIx::Class::SQLMaker::OracleJoins>
65 =item L<DBIx::Class::Storage::DBI::Oracle::Generic>
73 Justin Wheeler C<< <jwheeler@datademons.com> >>
77 David Jack Olrik C<< <djo@cpan.org> >>
81 This module is licensed under the same terms as Perl itself.