X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FODBC.pm;h=2b7790df519be659467de499552268cb8478ae7c;hb=010f82a001cea2c6067fd8a080e29eb3310c2ecb;hp=7c3b739230c54f62a264f5cb0f43911340f1e082;hpb=a52c8b220cc34804bf227aea8682aec7c0f10b99;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Storage/DBI/ODBC.pm b/lib/DBIx/Class/Storage/DBI/ODBC.pm index 7c3b739..2b7790d 100644 --- a/lib/DBIx/Class/Storage/DBI/ODBC.pm +++ b/lib/DBIx/Class/Storage/DBI/ODBC.pm @@ -8,7 +8,7 @@ use mro 'c3'; sub _rebless { my ($self) = @_; - my $dbtype = eval { $self->last_dbh->get_info(17) }; + my $dbtype = eval { $self->_get_dbh->get_info(17) }; unless ( $@ ) { # Translate the backend name into a perl identifier @@ -36,18 +36,11 @@ sub _dbh_last_insert_id { DBIx::Class::Storage::DBI::ODBC - Base class for ODBC drivers -=head1 SYNOPSIS - - # In your table classes - __PACKAGE__->load_components(qw/Core/); - - =head1 DESCRIPTION This class simply provides a mechanism for discovering and loading a sub-class for a specific ODBC backend. It should be transparent to the user. - =head1 AUTHORS Marc Mims C<< >>