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