- Add quote_names connection option. When set to true automatically
sets quote_char and name_sep appropriate for your RDBMS
- IC::DateTime support for MSSQL over DBD::ADO
+ - Both the ::ODBC and ::ADO dispatchers now warn if a rdbms-specific
+ driver is not found for this connection before falling back to
+ plain ::Storage::DBI
* Fixes
- Disable mysql_auto_reconnect for MySQL - depending on the ENV
use base 'DBIx::Class::Storage::DBI';
use mro 'c3';
-use Try::Tiny;
-use namespace::clean;
=head1 NAME
my $dbtype = $self->_dbh_get_info(17);
if (not $dbtype) {
- warn 'Unable to determine ADO driver, failling back to generic support';
+ warn "Unable to determine ADO driver, failling back to generic support.\n";
return;
}
$dbtype =~ s/\W/_/gi;
+
my $subclass = "DBIx::Class::Storage::DBI::ADO::${dbtype}";
+
if ($self->load_optional_class($subclass) && !$self->isa($subclass)) {
bless $self, $subclass;
$self->_rebless;
}
+ else {
+ warn "Expected driver '$subclass' not found, using generic support. " .
+ "Please file an RT.\n";
+ }
}
# cleanup some warnings from DBD::ADO
package DBIx::Class::Storage::DBI::ODBC;
use strict;
use warnings;
-
use base qw/DBIx::Class::Storage::DBI/;
use mro 'c3';
-use Try::Tiny;
-use namespace::clean;
sub _rebless {
my ($self) = @_;
- if (my $dbtype = try { $self->_get_dbh->get_info(17) }) {
-
+ if (my $dbtype = $self->_dbh_get_info(17)) {
# Translate the backend name into a perl identifier
$dbtype =~ s/\W/_/gi;
my $subclass = "DBIx::Class::Storage::DBI::ODBC::${dbtype}";
bless $self, $subclass;
$self->_rebless;
}
+ else {
+ warn "Expected driver '$subclass' not found, using generic support. " .
+ "Please file an RT.\n";
+ }
+ }
+ else {
+ warn "Could not determine your database type, using generic support.\n";
}
}
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
+=head1 AUTHOR
-Marc Mims C<< <marc@questright.com> >>
+See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
=head1 LICENSE
You may distribute this code under the same terms as Perl itself.
=cut
+# vim:sts=2 sw=2: