use base 'DBIx::Class::Storage::DBI';
use mro 'c3';
+use Sub::Name;
+use namespace::clean;
+
=head1 NAME
DBIx::Class::Storage::DBI::ADO - Support for L<DBD::ADO>
$self->next::method(@_);
}
+# Monkeypatch out the horrible warnings during global destruction.
+# A patch to DBD::ADO has been submitted as well.
+# https://rt.cpan.org/Ticket/Display.html?id=65563
+sub _init {
+ no warnings 'redefine';
+ require DBD::ADO;
+
+ if ($DBD::ADO::VERSION <= 2.98) {
+ my $disconnect = *DBD::ADO::db::disconnect{CODE};
+
+ *DBD::ADO::db::disconnect = subname 'DBD::ADO::db::disconnect' => sub {
+ my $warn_handler = $SIG{__WARN__} || sub { warn @_ };
+ local $SIG{__WARN__} = sub {
+ $warn_handler->(@_)
+ unless $_[0] =~ /Not a Win32::OLE object|uninitialized value/;
+ };
+ $disconnect->(@_);
+ };
+ }
+}
+
# Here I was just experimenting with ADO cursor types, left in as a comment in
# case you want to as well. See the DBD::ADO docs.
#sub _dbh_sth {