b977ec6be7ed5326989f4908b4df4ca356bbf20c
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Oracle.pm
1 package DBIx::Class::Storage::DBI::Oracle;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class::Storage::DBI/;
7 use mro 'c3';
8 use Try::Tiny;
9
10 sub _rebless {
11     my ($self) = @_;
12
13     try {
14       my $version = $self->_get_dbh->get_info(18);
15
16       my ($major, $minor, $patchlevel) = split(/\./, $version);
17
18       # Default driver
19       my $class = $major <= 8
20         ? 'DBIx::Class::Storage::DBI::Oracle::WhereJoins'
21         : 'DBIx::Class::Storage::DBI::Oracle::Generic';
22
23       $self->ensure_class_loaded ($class);
24       bless $self, $class;
25     };
26 }
27
28 1;
29
30 =head1 NAME
31
32 DBIx::Class::Storage::DBI::Oracle - Base class for Oracle driver
33
34 =head1 DESCRIPTION
35
36 This class simply provides a mechanism for discovering and loading a sub-class
37 for a specific version Oracle backend. It should be transparent to the user.
38
39 For Oracle major versions <= 8 it loads the ::Oracle::WhereJoins subclass,
40 which unrolls the ANSI join style DBIC normally generates into entries in
41 the WHERE clause for compatibility purposes. To force usage of this version
42 no matter the database version, add
43
44   __PACKAGE__->storage_type('::DBI::Oracle::WhereJoins');
45
46 to your Schema class.
47
48 =head1 AUTHORS
49
50 David Jack Olrik C<< <djo@cpan.org> >>
51
52 =head1 LICENSE
53
54 You may distribute this code under the same terms as Perl itself.
55
56 =cut