Unbreak devrel version checks
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / ODBC.pm
1 package DBIx::Class::Storage::DBI::ODBC;
2 use strict;
3 use warnings;
4 use base qw/DBIx::Class::Storage::DBI/;
5 use mro 'c3';
6
7 use DBIx::Class::_Util 'modver_gt_or_eq';
8 use namespace::clean;
9
10 sub _rebless { shift->_determine_connector_driver('ODBC') }
11
12 # Whether or not we are connecting via the freetds ODBC driver
13 sub _using_freetds {
14   my $self = shift;
15
16   my $dsn = $self->_dbi_connect_info->[0];
17
18   return 1 if (
19     ( (! ref $dsn) and $dsn =~ /driver=FreeTDS/i)
20       or
21     ( ($self->_dbh_get_info('SQL_DRIVER_NAME')||'') =~ /tdsodbc/i )
22   );
23
24   return 0;
25 }
26
27 # Either returns the FreeTDS version via which we are connecting, 0 if can't
28 # be determined, or undef otherwise
29 sub _using_freetds_version {
30   my $self = shift;
31   return undef unless $self->_using_freetds;
32   return $self->_dbh_get_info('SQL_DRIVER_VER') || 0;
33 }
34
35 sub _disable_odbc_array_ops {
36   my $self = shift;
37   my $dbh  = $self->_get_dbh;
38
39   $DBD::ODBC::__DBIC_DISABLE_ARRAY_OPS_VIA__ ||= [ do {
40     if( modver_gt_or_eq('DBD::ODBC', '1.35_01') ) {
41       odbc_array_operations => 0;
42     }
43     elsif( modver_gt_or_eq('DBD::ODBC', '1.33_01') ) {
44       odbc_disable_array_operations => 1;
45     }
46   }];
47
48   if (my ($k, $v) = @$DBD::ODBC::__DBIC_DISABLE_ARRAY_OPS_VIA__) {
49     $dbh->{$k} = $v;
50   }
51 }
52
53 1;
54
55 =head1 NAME
56
57 DBIx::Class::Storage::DBI::ODBC - Base class for ODBC drivers
58
59 =head1 DESCRIPTION
60
61 This class simply provides a mechanism for discovering and loading a sub-class
62 for a specific ODBC backend.  It should be transparent to the user.
63
64 =head1 AUTHOR
65
66 See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
67
68 =head1 LICENSE
69
70 You may distribute this code under the same terms as Perl itself.
71
72 =cut
73 # vim:sts=2 sw=2: