Merge 'normalize_connect_info' into 'trunk'
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / ODBC.pm
CommitLineData
2a57124d 1package DBIx::Class::Storage::DBI::ODBC;
2use strict;
3use warnings;
4
5use base qw/DBIx::Class::Storage::DBI/;
2ad62d97 6use mro 'c3';
2a57124d 7
8sub _rebless {
9 my ($self) = @_;
10
9ae966b9 11 my $dbtype = eval { $self->_get_dbh->get_info(17) };
ef131d82 12
2a57124d 13 unless ( $@ ) {
14 # Translate the backend name into a perl identifier
15 $dbtype =~ s/\W/_/gi;
4a9a13c8 16 my $subclass = "DBIx::Class::Storage::DBI::ODBC::${dbtype}";
17 if ($self->load_optional_class($subclass) && !$self->isa($subclass)) {
18 bless $self, $subclass;
19 $self->_rebless;
20 }
2a57124d 21 }
22}
23
455833d9 24sub _dbh_last_insert_id {
25 my ($self, $dbh, $source, $col) = @_;
26
27 # punt: if there is no derived class for the specific backend, attempt
28 # to use the DBI->last_insert_id, which may not be sufficient (see the
29 # discussion of last_insert_id in perldoc DBI)
30 return $dbh->last_insert_id(undef, undef, $source->from, $col);
31}
2a57124d 32
331;
34
35=head1 NAME
36
37DBIx::Class::Storage::DBI::ODBC - Base class for ODBC drivers
38
2a57124d 39=head1 DESCRIPTION
40
41This class simply provides a mechanism for discovering and loading a sub-class
42for a specific ODBC backend. It should be transparent to the user.
43
2a57124d 44=head1 AUTHORS
45
c1e64353 46Marc Mims C<< <marc@questright.com> >>
2a57124d 47
48=head1 LICENSE
49
50You may distribute this code under the same terms as Perl itself.
51
52=cut