File Coverage

blib/lib/DBIx/Class/Storage/DBI/Sybase.pm
Criterion Covered Total %
statement 23 72 31.9
branch 1 22 4.5
condition 2 9 22.2
subroutine 8 18 44.4
pod n/a
total 34 121 28.1


line stmt bran cond sub pod time code
1             package DBIx::Class::Storage::DBI::Sybase;
2              
3 4     4   1169 use strict;
  4         7  
  4         141  
4 4     4   19 use warnings;
  4         8  
  4         109  
5 4     4   18 use Try::Tiny;
  4         7  
  4         227  
6 4     4   24 use namespace::clean;
  4         10  
  4         24  
7              
8 4     4   951 use base qw/DBIx::Class::Storage::DBI/;
  4         8  
  4         1910  
9              
10             =head1 NAME
11              
12             DBIx::Class::Storage::DBI::Sybase - Base class for drivers using
13             L
14              
15             =head1 DESCRIPTION
16              
17             This is the base class/dispatcher for Storage's designed to work with
18             L
19              
20             =head1 METHODS
21              
22             =cut
23              
24             sub _rebless {
25 0     0   0 my $self = shift;
26              
27 0         0 my $dbtype;
28             try {
29 0     0   0 $dbtype = @{$self->_get_dbh->selectrow_arrayref(qq{sp_server_info \@attribute_id=1})}[2]
  0         0  
30             } catch {
31 0     0   0 $self->throw_exception("Unable to establish connection to determine database type: $_")
32 0         0 };
33              
34 0 0       0 if ($dbtype) {
35 0         0 $dbtype =~ s/\W/_/gi;
36              
37             # saner class name
38 0 0       0 $dbtype = 'ASE' if $dbtype eq 'SQL_Server';
39              
40 0         0 my $subclass = __PACKAGE__ . "::$dbtype";
41 0 0       0 if ($self->load_optional_class($subclass)) {
42 0         0 bless $self, $subclass;
43 0         0 $self->_rebless;
44             }
45             }
46             }
47              
48             sub _init {
49             # once the driver is determined see if we need to insert the DBD::Sybase w/ FreeTDS fixups
50             # this is a dirty version of "instance role application", \o/ DO WANT Moo \o/
51 1     1   12 my $self = shift;
52 1 50 33     20 if (! $self->isa('DBIx::Class::Storage::DBI::Sybase::FreeTDS') and $self->_using_freetds) {
53 0         0 require DBIx::Class::Storage::DBI::Sybase::FreeTDS;
54              
55 0         0 my @isa = @{mro::get_linear_isa(ref $self)};
  0         0  
56 0         0 my $class = shift @isa; # this is our current ref
57              
58 0         0 my $trait_class = $class . '::FreeTDS';
59 0         0 mro::set_mro ($trait_class, 'c3');
60 4     4   26 no strict 'refs';
  4         7  
  4         1984  
61 0         0 @{"${trait_class}::ISA"} = ($class, 'DBIx::Class::Storage::DBI::Sybase::FreeTDS', @isa);
  0         0  
62              
63 0         0 bless ($self, $trait_class);
64              
65 0         0 Class::C3->reinitialize() if DBIx::Class::_ENV_::OLD_MRO;
66              
67 0         0 $self->_init(@_);
68             }
69              
70 1         13 $self->next::method(@_);
71             }
72              
73             sub _ping {
74 0     0   0 my $self = shift;
75              
76 0 0       0 my $dbh = $self->_dbh or return 0;
77              
78 0         0 local $dbh->{RaiseError} = 1;
79 0         0 local $dbh->{PrintError} = 0;
80              
81             # FIXME if the main connection goes stale, does opening another for this statement
82             # really determine anything?
83              
84 0 0       0 if ($dbh->{syb_no_child_con}) {
85             return try {
86 0     0   0 $self->_connect->do('select 1');
87 0         0 1;
88             }
89             catch {
90 0     0   0 0;
91 0         0 };
92             }
93              
94             return try {
95 0     0   0 $dbh->do('select 1');
96 0         0 1;
97             }
98             catch {
99 0     0   0 0;
100 0         0 };
101             }
102              
103             sub _set_max_connect {
104 0     0   0 my $self = shift;
105 0   0     0 my $val = shift || 256;
106              
107 0         0 my $dsn = $self->_dbi_connect_info->[0];
108              
109 0 0       0 return if ref($dsn) eq 'CODE';
110              
111 0 0       0 if ($dsn !~ /maxConnect=/) {
112 0         0 $self->_dbi_connect_info->[0] = "$dsn;maxConnect=$val";
113 0         0 my $connected = defined $self->_dbh;
114 0         0 $self->disconnect;
115 0 0       0 $self->ensure_connected if $connected;
116             }
117             }
118              
119             # Whether or not DBD::Sybase was compiled against FreeTDS. If false, it means
120             # the Sybase OpenClient libraries were used.
121             sub _using_freetds {
122 2     2   3 my $self = shift;
123 2   50     13 return ($self->_get_dbh->{syb_oc_version}||'') =~ /freetds/i;
124             }
125              
126             # Either returns the FreeTDS version against which DBD::Sybase was compiled,
127             # 0 if can't be determined, or undef otherwise
128             sub _using_freetds_version {
129 0     0     my $inf = shift->_get_dbh->{syb_oc_version};
130 0 0 0       return undef unless ($inf||'') =~ /freetds/i;
131 0 0         return $inf =~ /v([0-9\.]+)/ ? $1 : 0;
132             }
133              
134             =head1 FURTHER QUESTIONS?
135              
136             Check the list of L.
137              
138             =head1 COPYRIGHT AND LICENSE
139              
140             This module is free software L
141             by the L. You can
142             redistribute it and/or modify it under the same terms as the
143             L.
144              
145             =cut
146              
147             1;
148