Multiple cleanups to accommodate broken FreeTDS driver
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / ODBC / Microsoft_SQL_Server.pm
CommitLineData
c1cac633 1package DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server;
2use strict;
3use warnings;
4
eb0323df 5use base qw/DBIx::Class::Storage::DBI::MSSQL/;
2ad62d97 6use mro 'c3';
6298a324 7use Scalar::Util 'reftype';
ed7ab0f4 8use Try::Tiny;
70c28808 9use DBIx::Class::Carp;
fd323bf1 10use namespace::clean;
c1cac633 11
7b1b2582 12__PACKAGE__->mk_group_accessors(simple => qw/
13 _using_dynamic_cursors
14/);
c1cac633 15
16=head1 NAME
17
a89c6fc0 18DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server - Support specific
19to Microsoft SQL Server over ODBC
c1cac633 20
21=head1 DESCRIPTION
22
5a77aa8b 23This class implements support specific to Microsoft SQL Server over ODBC. It is
24loaded automatically by by DBIx::Class::Storage::DBI::ODBC when it detects a
25MSSQL back-end.
c1cac633 26
5a77aa8b 27Most of the functionality is provided from the superclass
28L<DBIx::Class::Storage::DBI::MSSQL>.
c1cac633 29
dcc7ddff 30=head1 USAGE NOTES
31
32=head2 Basic Linux Setup (Debian)
33
34 sudo aptitude install tdsodbc libdbd-odbc-perl unixodbc
35
36In case it is not already there put the following in C</etc/odbcinst.ini>:
37
38 [FreeTDS]
39 Description = FreeTDS
40 Driver = /usr/lib/odbc/libtdsodbc.so
41 Setup = /usr/lib/odbc/libtdsS.so
42 UsageCount = 1
43
44Set your C<$dsn> in L<connect_info|DBIx::Class::Storage::DBI/connect_info> as follows:
45
46 dbi:ODBC:server=<my.host.name>;port=1433;driver=FreeTDS;tds_version=8.0
47
48If you use the EasySoft driver (L<http://www.easysoft.com>):
49
50 dbi:ODBC:server=<my.host.name>;port=1433;driver=Easysoft ODBC-SQL Server
51
52=head2 Basic Windows Setup
53
54Use the following C<$dsn> for the Microsoft ODBC driver:
55
56 dbi:ODBC:driver={SQL Server};server=SERVER\SQL_SERVER_INSTANCE_NAME
57
58And for the Native Client:
59
60 dbi:ODBC:driver={SQL Server Native Client 10.0};server=SERVER\SQL_SERVER_INSTANCE_NAME
61
62Go into Control Panel -> System and Security -> Administrative Tools -> Data
63Sources (ODBC) to check driver names and to set up data sources.
64
65Use System DSNs, not User DSNs if you want to use DSNs.
66
67If you set up a DSN, use the following C<$dsn> for
68L<connect_info|DBIx::Class::Storage::DBI/connect_info>:
69
70 dbi:ODBC:dsn=MY_DSN
71
7b1b2582 72=head1 MULTIPLE ACTIVE STATEMENTS
73
74The following options are alternative ways to enable concurrent executing
384b8bce 75statement support. Each has its own advantages and drawbacks and works on
76different platforms. Read each section carefully.
77
78In order of preference, they are:
79
80=over 8
81
1db83fb9 82=item * L<mars|/connect_call_use_mars>
384b8bce 83
1db83fb9 84=item * L<dynamic_cursors|/connect_call_use_dynamic_cursors>
384b8bce 85
1db83fb9 86=item * L<server_cursors|/connect_call_use_server_cursors>
384b8bce 87
88=back
89
90=head1 METHODS
91
92=head2 connect_call_use_mars
93
94Use as:
95
96 on_connect_call => 'use_mars'
97
1db83fb9 98in your connection info, or alternatively specify it directly:
99
100 Your::Schema->connect (
101 $original_dsn . '; MARS_Connection=Yes',
102 $user,
103 $pass,
104 \%attrs,
105 )
106
384b8bce 107Use to enable a feature of SQL Server 2005 and later, "Multiple Active Result
108Sets". See L<DBD::ODBC::FAQ/Does DBD::ODBC support Multiple Active Statements?>
109for more information.
110
111This does not work on FreeTDS drivers at the time of this writing, and only
112works with the Native Client, later versions of the Windows MS ODBC driver, and
113the Easysoft driver.
114
115=cut
116
117sub connect_call_use_mars {
118 my $self = shift;
119
120 my $dsn = $self->_dbi_connect_info->[0];
121
122 if (ref($dsn) eq 'CODE') {
123 $self->throw_exception('cannot change the DBI DSN on a CODE ref connect_info');
124 }
125
126 if ($dsn !~ /MARS_Connection=/) {
127 if ($self->using_freetds) {
128 $self->throw_exception('FreeTDS does not support MARS at the time of '
129 .'writing.');
130 }
131
132 if (exists $self->_server_info->{normalized_dbms_version} &&
133 $self->_server_info->{normalized_dbms_version} < 9) {
134 $self->throw_exception('SQL Server 2005 or later required to use MARS.');
135 }
136
137 if (my ($data_source) = $dsn =~ /^dbi:ODBC:([\w-]+)\z/i) { # prefix with DSN
a469c045 138 warn "Bare DSN in ODBC connect string, rewriting as 'dsn=$data_source'"
139 ." for MARS\n";
140 $dsn = "dbi:ODBC:dsn=$data_source";
384b8bce 141 }
142
143 $self->_dbi_connect_info->[0] = "$dsn;MARS_Connection=Yes";
144 $self->disconnect;
145 $self->ensure_connected;
146 }
147}
148
149sub connect_call_use_MARS {
150 carp "'connect_call_use_MARS' has been deprecated, use "
151 ."'connect_call_use_mars' instead.";
152 shift->connect_call_use_mars(@_)
153}
7b1b2582 154
155=head2 connect_call_use_dynamic_cursors
156
157Use as:
158
159 on_connect_call => 'use_dynamic_cursors'
160
1db83fb9 161Which will add C<< odbc_cursortype => 2 >> to your DBI connection
162attributes, or alternatively specify the necessary flag directly:
7b1b2582 163
1db83fb9 164 Your::Schema->connect (@dsn, { ... odbc_cursortype => 2 })
7b1b2582 165
1db83fb9 166See L<DBD::ODBC/odbc_cursortype> for more information.
7b1b2582 167
41dd5d30 168If you're using FreeTDS, C<tds_version> must be set to at least C<8.0>.
169
170This will not work with CODE ref connect_info's.
7b1b2582 171
1db83fb9 172B<WARNING:> on FreeTDS (and maybe some other drivers) this will break
173C<SCOPE_IDENTITY()>, and C<SELECT @@IDENTITY> will be used instead, which on SQL
174Server 2005 and later will return erroneous results on tables which have an on
175insert trigger that inserts into another table with an C<IDENTITY> column.
7b1b2582 176
9ffaf8a3 177B<WARNING:> on FreeTDS, changes made in one statement (e.g. an insert) may not
178be visible from a following statement (e.g. a select.)
179
25d3127d 180B<WARNING:> FreeTDS versions > 0.82 seem to have completely broken the ODBC
181protocol. DBIC will not allow dynamic cursor support with such versions to
182protect your data. Please hassle the authors of FreeTDS to act on the bugs that
183make their driver not overly usable with DBD::ODBC.
184
7b1b2582 185=cut
186
187sub connect_call_use_dynamic_cursors {
188 my $self = shift;
189
9ffaf8a3 190 if (($self->_dbic_connect_attributes->{odbc_cursortype} || 0) < 2) {
7b1b2582 191
9ffaf8a3 192 my $dbi_inf = $self->_dbi_connect_info;
193
194 $self->throw_exception ('Cannot set DBI attributes on a CODE ref connect_info')
195 if ref($dbi_inf->[0]) eq 'CODE';
7b1b2582 196
1db83fb9 197 # reenter connection information with the attribute re-set
9ffaf8a3 198 $dbi_inf->[3] = {} if @$dbi_inf <= 3;
199 $dbi_inf->[3]{odbc_cursortype} = 2;
200
201 $self->_dbi_connect_info($dbi_inf);
202
75517ea9 203 $self->disconnect; # resetting dbi attrs, so have to reconnect
204 $self->ensure_connected;
7b1b2582 205 }
206}
207
1db83fb9 208sub _run_connection_actions {
7b1b2582 209 my $self = shift;
210
1db83fb9 211 # keep the dynamic_cursors_support and driver-state in sync
212 # on every reconnect
213 my $use_dyncursors = ($self->_dbic_connect_attributes->{odbc_cursortype} || 0) > 1;
1a58752c 214 if (
1db83fb9 215 $use_dyncursors
216 xor
217 !!$self->_using_dynamic_cursors
1a58752c 218 ) {
1db83fb9 219 if ($use_dyncursors) {
220 try {
221 my $dbh = $self->_dbh;
222 local $dbh->{RaiseError} = 1;
223 local $dbh->{PrintError} = 0;
224 $dbh->do('SELECT @@IDENTITY');
225 } catch {
226 $self->throw_exception (
227 'Your drivers do not seem to support dynamic cursors (odbc_cursortype => 2).'
228 . (
229 $self->using_freetds
230 ? ' If you are using FreeTDS, make sure to set tds_version to 8.0 or greater.'
231 : ''
232 )
233 );
234 };
235
236 $self->_using_dynamic_cursors(1);
237 $self->_identity_method('@@identity');
25d3127d 238 $self->_no_scope_identity_query($self->using_freetds);
1db83fb9 239 }
240 else {
241 $self->_using_dynamic_cursors(0);
242 $self->_identity_method(undef);
25d3127d 243 $self->_no_scope_identity_query(undef);
1db83fb9 244 }
384b8bce 245 }
1db83fb9 246
247 $self->next::method (@_);
25d3127d 248
249 # freetds is too damn broken, some fixups
250 if ($self->using_freetds) {
251
252 # no dynamic cursors starting from 0.83
253 if ($self->_using_dynamic_cursors) {
254 my $fv = $self->_dbh_get_info('SQL_DRIVER_VER');
255 $self->throw_exception(
256 'Dynamic cursors (odbc_cursortype => 2) are not supported with FreeTDS > 0.82 '
257 . "(you have $fv). Please hassle FreeTDS authors to fix the outstanding bugs in "
258 . 'their driver.'
259 ) if $fv > 0.82
260 }
261
262 # FreeTDS is too broken wrt execute_for_fetch batching
263 # just disable it outright until things quiet down
264 $self->_get_dbh->{odbc_disable_array_operations} = 1;
265 }
7b1b2582 266}
267
268=head2 connect_call_use_server_cursors
269
270Use as:
271
272 on_connect_call => 'use_server_cursors'
273
274May allow multiple active select statements. See
275L<DBD::ODBC/odbc_SQL_ROWSET_SIZE> for more information.
276
277Takes an optional parameter for the value to set the attribute to, default is
278C<2>.
279
280B<WARNING>: this does not work on all versions of SQL Server, and may lock up
281your database!
282
384b8bce 283At the time of writing, this option only works on Microsoft's Windows drivers,
284later versions of the ODBC driver and the Native Client driver.
285
7b1b2582 286=cut
287
288sub connect_call_use_server_cursors {
289 my $self = shift;
290 my $sql_rowset_size = shift || 2;
291
384b8bce 292 if ($^O !~ /win32|cygwin/i) {
293 $self->throw_exception('Server cursors only work on Windows platforms at '
294 .'the time of writing.');
295 }
296
9ae966b9 297 $self->_get_dbh->{odbc_SQL_ROWSET_SIZE} = $sql_rowset_size;
7b1b2582 298}
299
384b8bce 300=head2 using_freetds
7b1b2582 301
384b8bce 302Tries to determine, to the best of our ability, whether or not you are using the
303FreeTDS driver with L<DBD::ODBC>.
7b1b2582 304
305=cut
306
384b8bce 307sub using_freetds {
7b1b2582 308 my $self = shift;
309
310 my $dsn = $self->_dbi_connect_info->[0];
311
384b8bce 312 $dsn = '' if ref $dsn eq 'CODE';
7b1b2582 313
384b8bce 314 return 1 if $dsn =~ /driver=FreeTDS/i
af1f4f84 315 || ($self->_dbh_get_info('SQL_DRIVER_NAME')||'') =~ /tdsodbc/i;
384b8bce 316
317 return 0;
7b1b2582 318}
319
3201;
321
5a77aa8b 322=head1 AUTHOR
c1cac633 323
9ffaf8a3 324See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
c1cac633 325
326=head1 LICENSE
327
328You may distribute this code under the same terms as Perl itself.
329
330=cut
9ffaf8a3 331# vim:sw=2 sts=2 et