Silence spurious warnings from todoified test
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / MSSQL.pm
CommitLineData
75d07914 1package DBIx::Class::Storage::DBI::MSSQL;
3885cff6 2
75d07914 3use strict;
4use warnings;
3885cff6 5
fabbd5cc 6use base qw/
7 DBIx::Class::Storage::DBI::UniqueIdentifier
8 DBIx::Class::Storage::DBI::IdentityInsert
9/;
2ad62d97 10use mro 'c3';
fabbd5cc 11
ddcc02d1 12use DBIx::Class::_Util 'dbic_internal_try';
6298a324 13use List::Util 'first';
fd323bf1 14use namespace::clean;
3885cff6 15
7b1b2582 16__PACKAGE__->mk_group_accessors(simple => qw/
25d3127d 17 _identity _identity_method _no_scope_identity_query
7b1b2582 18/);
19
d5dedbd6 20__PACKAGE__->sql_maker_class('DBIx::Class::SQLMaker::MSSQL');
ac93965c 21
2b8cc2f2 22__PACKAGE__->sql_quote_char([qw/[ ]/]);
23
6f7a118e 24__PACKAGE__->datetime_parser_type (
25 'DBIx::Class::Storage::DBI::MSSQL::DateTime::Format'
26);
27
40d8d018 28__PACKAGE__->new_guid('NEWID()');
29
5a77aa8b 30sub _prep_for_execute {
31 my $self = shift;
0e773352 32 my ($op, $ident, $args) = @_;
5a77aa8b 33
34# cast MONEY values properly
35 if ($op eq 'insert' || $op eq 'update') {
36 my $fields = $args->[0];
5a77aa8b 37
52416317 38 my $colinfo = $ident->columns_info([keys %$fields]);
39
5a77aa8b 40 for my $col (keys %$fields) {
1537084d 41 # $ident is a result source object with INSERT/UPDATE ops
52416317 42 if (
43 $colinfo->{$col}{data_type}
44 &&
45 $colinfo->{$col}{data_type} =~ /^money\z/i
46 ) {
5a77aa8b 47 my $val = $fields->{$col};
48 $fields->{$col} = \['CAST(? AS MONEY)', [ $col => $val ]];
49 }
50 }
51 }
52
53 my ($sql, $bind) = $self->next::method (@_);
54
fabbd5cc 55 # SELECT SCOPE_IDENTITY only works within a statement scope. We
4a0eed52 56 # must try to always use this particular idiom first, as it is the
fabbd5cc 57 # only one that guarantees retrieving the correct id under high
58 # concurrency. When this fails we will fall back to whatever secondary
59 # retrieval method is specified in _identity_method, but at this
60 # point we don't have many guarantees we will get what we expected.
61 # http://msdn.microsoft.com/en-us/library/ms190315.aspx
62 # http://davidhayden.com/blog/dave/archive/2006/01/17/2736.aspx
25d3127d 63 if ($self->_perform_autoinc_retrieval and not $self->_no_scope_identity_query) {
384b8bce 64 $sql .= "\nSELECT SCOPE_IDENTITY()";
5a77aa8b 65 }
66
67 return ($sql, $bind);
68}
69
70sub _execute {
71 my $self = shift;
5a77aa8b 72
fabbd5cc 73 # always list ctx - we need the $sth
0e773352 74 my ($rv, $sth, @bind) = $self->next::method(@_);
1537084d 75
fabbd5cc 76 if ($self->_perform_autoinc_retrieval) {
5a77aa8b 77
25d3127d 78 # attempt to bring back the result of SELECT SCOPE_IDENTITY() we tacked
1537084d 79 # on in _prep_for_execute above
25d3127d 80 my $identity;
81
82 # we didn't even try on ftds
83 unless ($self->_no_scope_identity_query) {
ddcc02d1 84 ($identity) = dbic_internal_try { $sth->fetchrow_array };
25d3127d 85 $sth->finish;
86 }
ed8de058 87
1537084d 88 # SCOPE_IDENTITY failed, but we can do something else
89 if ( (! $identity) && $self->_identity_method) {
90 ($identity) = $self->_dbh->selectrow_array(
91 'select ' . $self->_identity_method
92 );
93 }
7b1b2582 94
1537084d 95 $self->_identity($identity);
7b1b2582 96 }
97
1537084d 98 return wantarray ? ($rv, $sth, @bind) : $rv;
7b1b2582 99}
5a77aa8b 100
7b1b2582 101sub last_insert_id { shift->_identity }
5a77aa8b 102
f0bd60fc 103#
e74c68ce 104# MSSQL is retarded wrt ordered subselects. One needs to add a TOP
6a247f33 105# to *all* subqueries, but one also *can't* use TOP 100 PERCENT
e74c68ce 106# http://sqladvice.com/forums/permalink/18496/22931/ShowThread.aspx#22931
f0bd60fc 107#
108sub _select_args_to_query {
b928a9d5 109 #my ($self, $ident, $select, $cond, $attrs) = @_;
f0bd60fc 110 my $self = shift;
b928a9d5 111 my $attrs = $_[3];
f0bd60fc 112
b928a9d5 113 my $sql_bind = $self->next::method (@_);
f0bd60fc 114
b8d88d9b 115 # see if this is an ordered subquery
aca481d8 116 if (
b928a9d5 117 $$sql_bind->[0] !~ /^ \s* \( \s* SELECT \s+ TOP \s+ \d+ \s+ /xi
118 and
bac358c9 119 scalar $self->_extract_order_criteria ($attrs->{order_by})
aca481d8 120 ) {
6de07ea3 121 $self->throw_exception(
e705f529 122 'An ordered subselect encountered - this is not safe! Please see "Ordered Subselects" in DBIx::Class::Storage::DBI::MSSQL'
123 ) unless $attrs->{unsafe_subselect_ok};
b928a9d5 124
125 $$sql_bind->[0] =~ s/^ \s* \( \s* SELECT (?=\s) / '(SELECT TOP ' . $self->sql_maker->__max_int /exi;
f0bd60fc 126 }
127
b928a9d5 128 $sql_bind;
f0bd60fc 129}
130
131
4c0f4206 132# savepoint syntax is the same as in Sybase ASE
133
90d7422f 134sub _exec_svp_begin {
4c0f4206 135 my ($self, $name) = @_;
136
90d7422f 137 $self->_dbh->do("SAVE TRANSACTION $name");
4c0f4206 138}
139
140# A new SAVE TRANSACTION with the same name releases the previous one.
90d7422f 141sub _exec_svp_release { 1 }
4c0f4206 142
90d7422f 143sub _exec_svp_rollback {
4c0f4206 144 my ($self, $name) = @_;
145
90d7422f 146 $self->_dbh->do("ROLLBACK TRANSACTION $name");
4c0f4206 147}
148
eb0323df 149sub sqlt_type { 'SQLServer' }
150
6a247f33 151sub sql_limit_dialect {
50772633 152 my $self = shift;
eb0323df 153
6a247f33 154 my $supports_rno = 0;
ff153e24 155
6a247f33 156 if (exists $self->_server_info->{normalized_dbms_version}) {
157 $supports_rno = 1 if $self->_server_info->{normalized_dbms_version} >= 9;
158 }
159 else {
160 # User is connecting via DBD::Sybase and has no permission to run
161 # stored procedures like xp_msver, or version detection failed for some
162 # other reason.
163 # So, we use a query to check if RNO is implemented.
ddcc02d1 164 dbic_internal_try {
6a247f33 165 $self->_get_dbh->selectrow_array('SELECT row_number() OVER (ORDER BY rand())');
166 $supports_rno = 1;
167 };
50772633 168 }
e76e7b5c 169
6a247f33 170 return $supports_rno ? 'RowNumberOver' : 'Top';
ed8de058 171}
3885cff6 172
ecdf1ac8 173sub _ping {
174 my $self = shift;
175
176 my $dbh = $self->_dbh or return 0;
177
178 local $dbh->{RaiseError} = 1;
179 local $dbh->{PrintError} = 0;
180
ddcc02d1 181 (dbic_internal_try {
ecdf1ac8 182 $dbh->do('select 1');
52b420dd 183 1;
ddcc02d1 184 })
185 ? 1
186 : 0
187 ;
ecdf1ac8 188}
189
fb95dc4d 190package # hide from PAUSE
191 DBIx::Class::Storage::DBI::MSSQL::DateTime::Format;
192
fd323bf1 193my $datetime_format = '%Y-%m-%d %H:%M:%S.%3N'; # %F %T
fb95dc4d 194my $smalldatetime_format = '%Y-%m-%d %H:%M:%S';
195
196my ($datetime_parser, $smalldatetime_parser);
197
198sub parse_datetime {
199 shift;
200 require DateTime::Format::Strptime;
201 $datetime_parser ||= DateTime::Format::Strptime->new(
202 pattern => $datetime_format,
203 on_error => 'croak',
204 );
205 return $datetime_parser->parse_datetime(shift);
206}
207
208sub format_datetime {
209 shift;
210 require DateTime::Format::Strptime;
211 $datetime_parser ||= DateTime::Format::Strptime->new(
212 pattern => $datetime_format,
213 on_error => 'croak',
214 );
215 return $datetime_parser->format_datetime(shift);
216}
217
218sub parse_smalldatetime {
219 shift;
220 require DateTime::Format::Strptime;
221 $smalldatetime_parser ||= DateTime::Format::Strptime->new(
222 pattern => $smalldatetime_format,
223 on_error => 'croak',
224 );
225 return $smalldatetime_parser->parse_datetime(shift);
226}
227
228sub format_smalldatetime {
229 shift;
230 require DateTime::Format::Strptime;
231 $smalldatetime_parser ||= DateTime::Format::Strptime->new(
232 pattern => $smalldatetime_format,
233 on_error => 'croak',
234 );
235 return $smalldatetime_parser->format_datetime(shift);
236}
237
75d07914 2381;
3885cff6 239
75d07914 240=head1 NAME
3885cff6 241
5a77aa8b 242DBIx::Class::Storage::DBI::MSSQL - Base Class for Microsoft SQL Server support
243in DBIx::Class
3885cff6 244
75d07914 245=head1 SYNOPSIS
3885cff6 246
5a77aa8b 247This is the base class for Microsoft SQL Server support, used by
248L<DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server> and
249L<DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server>.
eb0323df 250
5a77aa8b 251=head1 IMPLEMENTATION NOTES
eb0323df 252
fd05d10a 253=head2 IDENTITY information
254
5a77aa8b 255Microsoft SQL Server supports three methods of retrieving the IDENTITY
256value for inserted row: IDENT_CURRENT, @@IDENTITY, and SCOPE_IDENTITY().
257SCOPE_IDENTITY is used here because it is the safest. However, it must
258be called is the same execute statement, not just the same connection.
eb0323df 259
5a77aa8b 260So, this implementation appends a SELECT SCOPE_IDENTITY() statement
261onto each INSERT to accommodate that requirement.
eb0323df 262
7b1b2582 263C<SELECT @@IDENTITY> can also be used by issuing:
264
265 $self->_identity_method('@@identity');
266
08cdc412 267it will only be used if SCOPE_IDENTITY() fails.
268
269This is more dangerous, as inserting into a table with an on insert trigger that
270inserts into another table with an identity will give erroneous results on
271recent versions of SQL Server.
7b1b2582 272
c84189e1 273=head2 identity insert
fd05d10a 274
275Be aware that we have tried to make things as simple as possible for our users.
c84189e1 276For MSSQL that means that when a user tries to create a row, while supplying an
277explicit value for an autoincrementing column, we will try to issue the
278appropriate database call to make this possible, namely C<SET IDENTITY_INSERT
279$table_name ON>. Unfortunately this operation in MSSQL requires the
280C<db_ddladmin> privilege, which is normally not included in the standard
281write-permissions.
fd05d10a 282
d74f2da9 283=head2 Ordered Subselects
6de07ea3 284
d74f2da9 285If you attempted the following query (among many others) in Microsoft SQL
286Server
6de07ea3 287
6de07ea3 288 $rs->search ({}, {
6de07ea3 289 prefetch => 'relation',
290 rows => 2,
291 offset => 3,
292 });
293
d74f2da9 294You may be surprised to receive an exception. The reason for this is a quirk
295in the MSSQL engine itself, and sadly doesn't have a sensible workaround due
296to the way DBIC is built. DBIC can do truly wonderful things with the aid of
297subselects, and does so automatically when necessary. The list of situations
298when a subselect is necessary is long and still changes often, so it can not
299be exhaustively enumerated here. The general rule of thumb is a joined
300L<has_many|DBIx::Class::Relationship/has_many> relationship with limit/group
301applied to the left part of the join.
302
303In its "pursuit of standards" Microsft SQL Server goes to great lengths to
304forbid the use of ordered subselects. This breaks a very useful group of
305searches like "Give me things number 4 to 6 (ordered by name), and prefetch
306all their relations, no matter how many". While there is a hack which fools
307the syntax checker, the optimizer may B<still elect to break the subselect>.
308Testing has determined that while such breakage does occur (the test suite
309contains an explicit test which demonstrates the problem), it is relative
310rare. The benefits of ordered subselects are on the other hand too great to be
311outright disabled for MSSQL.
6de07ea3 312
313Thus compromise between usability and perfection is the MSSQL-specific
69a8b315 314L<resultset attribute|DBIx::Class::ResultSet/ATTRIBUTES> C<unsafe_subselect_ok>.
6de07ea3 315It is deliberately not possible to set this on the Storage level, as the user
48580715 316should inspect (and preferably regression-test) the return of every such
d74f2da9 317ResultSet individually. The example above would work if written like:
318
319 $rs->search ({}, {
69a8b315 320 unsafe_subselect_ok => 1,
d74f2da9 321 prefetch => 'relation',
322 rows => 2,
323 offset => 3,
324 });
6de07ea3 325
326If it is possible to rewrite the search() in a way that will avoid the need
327for this flag - you are urged to do so. If DBIC internals insist that an
d74f2da9 328ordered subselect is necessary for an operation, and you believe there is a
48580715 329different/better way to get the same result - please file a bugreport.
6de07ea3 330
a2bd3796 331=head1 FURTHER QUESTIONS?
3885cff6 332
a2bd3796 333Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
3885cff6 334
a2bd3796 335=head1 COPYRIGHT AND LICENSE
3885cff6 336
a2bd3796 337This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
338by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
339redistribute it and/or modify it under the same terms as the
340L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.