Majorly cleanup $rs->update/delete (no $rs-aware code should be in ::Storages)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / ADO.pm
CommitLineData
56dca25f 1package DBIx::Class::Storage::DBI::ADO;
4ffa5700 2
3use base 'DBIx::Class::Storage::DBI';
56dca25f 4use mro 'c3';
4ffa5700 5
772a1a25 6use Sub::Name;
8892d8e5 7use Try::Tiny;
772a1a25 8use namespace::clean;
9
56dca25f 10=head1 NAME
11
12DBIx::Class::Storage::DBI::ADO - Support for L<DBD::ADO>
13
14=head1 DESCRIPTION
15
16This class provides a mechanism for discovering and loading a sub-class
17for a specific ADO backend, as well as some workarounds for L<DBD::ADO>. It
18should be transparent to the user.
19
20=cut
21
4ffa5700 22sub _rebless {
23 my $self = shift;
24
56dca25f 25 my $dbtype = $self->_dbh_get_info(17);
26
27 if (not $dbtype) {
ab17c175 28 warn "Unable to determine ADO driver, failling back to generic support.\n";
56dca25f 29 return;
30 }
31
32 $dbtype =~ s/\W/_/gi;
ab17c175 33
56dca25f 34 my $subclass = "DBIx::Class::Storage::DBI::ADO::${dbtype}";
ab17c175 35
726c8f65 36 return if $self->isa($subclass);
37
38 if ($self->load_optional_class($subclass)) {
56dca25f 39 bless $self, $subclass;
40 $self->_rebless;
41 }
ab17c175 42 else {
43 warn "Expected driver '$subclass' not found, using generic support. " .
44 "Please file an RT.\n";
45 }
56dca25f 46}
47
48# cleanup some warnings from DBD::ADO
49# RT#65563, not fixed as of DBD::ADO v2.98
50sub _dbh_get_info {
51 my $self = shift;
52
53 my $warn_handler = $SIG{__WARN__} || sub { warn @_ };
54
55 local $SIG{__WARN__} = sub {
56 $warn_handler->(@_)
57 unless $_[0] =~ m{^Missing argument in sprintf at \S+/ADO/GetInfo\.pm};
52b420dd 58 };
56dca25f 59
60 $self->next::method(@_);
4ffa5700 61}
62
772a1a25 63# Monkeypatch out the horrible warnings during global destruction.
8892d8e5 64# A patch to DBD::ADO has been submitted as well, and it was fixed
65# as of 2.99
772a1a25 66# https://rt.cpan.org/Ticket/Display.html?id=65563
67sub _init {
8892d8e5 68 unless ($DBD::ADO::__DBIC_MONKEYPATCH_CHECKED__) {
69 require DBD::ADO;
70
71 unless (try { DBD::ADO->VERSION('2.99'); 1 }) {
72 no warnings 'redefine';
73 my $disconnect = *DBD::ADO::db::disconnect{CODE};
74
75 *DBD::ADO::db::disconnect = subname 'DBD::ADO::db::disconnect' => sub {
76 my $warn_handler = $SIG{__WARN__} || sub { warn @_ };
77 local $SIG{__WARN__} = sub {
78 $warn_handler->(@_)
79 unless $_[0] =~ /Not a Win32::OLE object|uninitialized value/;
80 };
81 $disconnect->(@_);
772a1a25 82 };
8892d8e5 83 }
84
85 $DBD::ADO::__DBIC_MONKEYPATCH_CHECKED__ = 1;
772a1a25 86 }
87}
88
748eb620 89# Here I was just experimenting with ADO cursor types, left in as a comment in
90# case you want to as well. See the DBD::ADO docs.
4ffa5700 91#sub _dbh_sth {
92# my ($self, $dbh, $sql) = @_;
93#
94# my $sth = $self->disable_sth_caching
95# ? $dbh->prepare($sql, { CursorType => 'adOpenStatic' })
96# : $dbh->prepare_cached($sql, { CursorType => 'adOpenStatic' }, 3);
97#
98# $self->throw_exception($dbh->errstr) if !$sth;
99#
100# $sth;
101#}
102
1031;
56dca25f 104
105=head1 AUTHOR
106
107See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
108
109=head1 LICENSE
110
111You may distribute this code under the same terms as Perl itself.
112
113=cut
114# vim:sts=2 sw=2: