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