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