Commit | Line | Data |
f68f4d44 |
1 | package DBIx::Class::Storage::DBI::Sybase; |
2 | |
3 | use strict; |
4 | use warnings; |
ed7ab0f4 |
5 | use Try::Tiny; |
fd323bf1 |
6 | use namespace::clean; |
2ad62d97 |
7 | |
057db5ce |
8 | use base qw/DBIx::Class::Storage::DBI/; |
d867eeda |
9 | |
10 | =head1 NAME |
11 | |
95787afe |
12 | DBIx::Class::Storage::DBI::Sybase - Base class for drivers using |
13 | L<DBD::Sybase> |
d867eeda |
14 | |
15 | =head1 DESCRIPTION |
16 | |
057db5ce |
17 | This is the base class/dispatcher for Storage's designed to work with |
18 | L<DBD::Sybase> |
d867eeda |
19 | |
20 | =head1 METHODS |
21 | |
22 | =cut |
f68f4d44 |
23 | |
47d9646a |
24 | sub _rebless { |
d867eeda |
25 | my $self = shift; |
d29565e0 |
26 | |
ed7ab0f4 |
27 | my $dbtype; |
28 | try { |
29 | $dbtype = @{$self->_get_dbh->selectrow_arrayref(qq{sp_server_info \@attribute_id=1})}[2] |
30 | } catch { |
369e69ab |
31 | $self->throw_exception("Unable to establish connection to determine database type: $_") |
057db5ce |
32 | }; |
d867eeda |
33 | |
057db5ce |
34 | if ($dbtype) { |
d867eeda |
35 | $dbtype =~ s/\W/_/gi; |
d867eeda |
36 | |
057db5ce |
37 | # saner class name |
38 | $dbtype = 'ASE' if $dbtype eq 'SQL_Server'; |
39 | |
40 | my $subclass = __PACKAGE__ . "::$dbtype"; |
41 | if ($self->load_optional_class($subclass)) { |
d867eeda |
42 | bless $self, $subclass; |
43 | $self->_rebless; |
d867eeda |
44 | } |
45 | } |
46 | } |
47 | |
c1e5a9ac |
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 | my $self = shift; |
aca3b4c3 |
52 | if (! $self->isa('DBIx::Class::Storage::DBI::Sybase::FreeTDS') and $self->_using_freetds) { |
c1e5a9ac |
53 | require DBIx::Class::Storage::DBI::Sybase::FreeTDS; |
54 | |
55 | my @isa = @{mro::get_linear_isa(ref $self)}; |
56 | my $class = shift @isa; # this is our current ref |
57 | |
58 | my $trait_class = $class . '::FreeTDS'; |
59 | mro::set_mro ($trait_class, 'c3'); |
60 | no strict 'refs'; |
61 | @{"${trait_class}::ISA"} = ($class, 'DBIx::Class::Storage::DBI::Sybase::FreeTDS', @isa); |
62 | |
63 | bless ($self, $trait_class); |
64 | |
65 | Class::C3->reinitialize() if DBIx::Class::_ENV_::OLD_MRO; |
66 | |
67 | $self->_init(@_); |
68 | } |
69 | |
70 | $self->next::method(@_); |
71 | } |
72 | |
057db5ce |
73 | sub _ping { |
d867eeda |
74 | my $self = shift; |
d867eeda |
75 | |
057db5ce |
76 | my $dbh = $self->_dbh or return 0; |
0a9a9955 |
77 | |
057db5ce |
78 | local $dbh->{RaiseError} = 1; |
79 | local $dbh->{PrintError} = 0; |
0a9a9955 |
80 | |
c1e5a9ac |
81 | # FIXME if the main connection goes stale, does opening another for this statement |
82 | # really determine anything? |
83 | |
057db5ce |
84 | if ($dbh->{syb_no_child_con}) { |
c1e5a9ac |
85 | return try { |
37b5ab51 |
86 | $self->_connect->do('select 1'); |
c1e5a9ac |
87 | 1; |
88 | } |
89 | catch { |
90 | 0; |
91 | }; |
057db5ce |
92 | } |
d867eeda |
93 | |
52b420dd |
94 | return try { |
057db5ce |
95 | $dbh->do('select 1'); |
52b420dd |
96 | 1; |
c1e5a9ac |
97 | } |
98 | catch { |
52b420dd |
99 | 0; |
d867eeda |
100 | }; |
0a9a9955 |
101 | } |
102 | |
057db5ce |
103 | sub _set_max_connect { |
d867eeda |
104 | my $self = shift; |
057db5ce |
105 | my $val = shift || 256; |
d867eeda |
106 | |
057db5ce |
107 | my $dsn = $self->_dbi_connect_info->[0]; |
d867eeda |
108 | |
057db5ce |
109 | return if ref($dsn) eq 'CODE'; |
81a10d8d |
110 | |
057db5ce |
111 | if ($dsn !~ /maxConnect=/) { |
112 | $self->_dbi_connect_info->[0] = "$dsn;maxConnect=$val"; |
113 | my $connected = defined $self->_dbh; |
114 | $self->disconnect; |
115 | $self->ensure_connected if $connected; |
d867eeda |
116 | } |
117 | } |
118 | |
aca3b4c3 |
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 { |
d867eeda |
122 | my $self = shift; |
c1e5a9ac |
123 | return ($self->_get_dbh->{syb_oc_version}||'') =~ /freetds/i; |
a964a928 |
124 | } |
125 | |
aca3b4c3 |
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 | my $inf = shift->_get_dbh->{syb_oc_version}; |
130 | return undef unless ($inf||'') =~ /freetds/i; |
131 | return $inf =~ /v([0-9\.]+)/ ? $1 : 0; |
132 | } |
133 | |
a2bd3796 |
134 | =head1 FURTHER QUESTIONS? |
f68f4d44 |
135 | |
a2bd3796 |
136 | Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>. |
47d9646a |
137 | |
a2bd3796 |
138 | =head1 COPYRIGHT AND LICENSE |
f68f4d44 |
139 | |
a2bd3796 |
140 | This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE> |
141 | by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can |
142 | redistribute it and/or modify it under the same terms as the |
143 | L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>. |
f68f4d44 |
144 | |
145 | =cut |
a2bd3796 |
146 | |
147 | 1; |
148 | |