1 package DBIx::Class::Storage::DBI::Oracle;
6 use base qw/DBIx::Class::Storage::DBI/;
15 my $class = $self->_server_info->{normalized_dbms_version} < 9
16 ? 'DBIx::Class::Storage::DBI::Oracle::WhereJoins'
17 : 'DBIx::Class::Storage::DBI::Oracle::Generic';
19 $self->ensure_class_loaded ($class);
27 DBIx::Class::Storage::DBI::Oracle - Base class for Oracle driver
31 This class simply provides a mechanism for discovering and loading a sub-class
32 for a specific version Oracle backend. It should be transparent to the user.
34 For Oracle major versions < 9 it loads the ::Oracle::WhereJoins subclass,
35 which unrolls the ANSI join style DBIC normally generates into entries in
36 the WHERE clause for compatibility purposes. To force usage of this version
37 no matter the database version, add
39 __PACKAGE__->storage_type('::DBI::Oracle::WhereJoins');
43 =head1 AUTHOR AND CONTRIBUTORS
45 See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
49 You may distribute this code under the same terms as Perl itself.