First pass on Sybase::ASE - reformats and minor cleanups for future commits
[dbsrgits/DBIx-Class-Historic.git] / lib / DBIx / Class / Storage / DBI / Sybase / ASE.pm
CommitLineData
057db5ce 1package DBIx::Class::Storage::DBI::Sybase::ASE;
2
3use strict;
4use warnings;
5
6use base qw/
fabbd5cc 7 DBIx::Class::Storage::DBI::Sybase
8 DBIx::Class::Storage::DBI::AutoCast
9 DBIx::Class::Storage::DBI::IdentityInsert
057db5ce 10/;
11use mro 'c3';
70c28808 12use DBIx::Class::Carp;
fabbd5cc 13use Scalar::Util qw/blessed weaken/;
6298a324 14use List::Util 'first';
057db5ce 15use Sub::Name();
6298a324 16use Data::Dumper::Concise 'Dumper';
ed7ab0f4 17use Try::Tiny;
fabbd5cc 18use Context::Preserve 'preserve_context';
052a832c 19use DBIx::Class::_Util 'sigwarn_silencer';
fd323bf1 20use namespace::clean;
057db5ce 21
048c2440 22__PACKAGE__->sql_limit_dialect ('GenericSubQ');
2b8cc2f2 23__PACKAGE__->sql_quote_char ([qw/[ ]/]);
c6b7885f 24__PACKAGE__->datetime_parser_type(
25 'DBIx::Class::Storage::DBI::Sybase::ASE::DateTime::Format'
26);
6a247f33 27
057db5ce 28__PACKAGE__->mk_group_accessors('simple' =>
fabbd5cc 29 qw/_identity _identity_method _blob_log_on_update _parent_storage
30 _writer_storage _is_writer_storage
057db5ce 31 _bulk_storage _is_bulk_storage _began_bulk_work
fabbd5cc 32 /
057db5ce 33);
34
deabd575 35
057db5ce 36my @also_proxy_to_extra_storages = qw/
37 connect_call_set_auto_cast auto_cast connect_call_blob_setup
38 connect_call_datetime_setup
39
40 disconnect _connect_info _sql_maker _sql_maker_opts disable_sth_caching
41 auto_savepoint unsafe cursor_class debug debugobj schema
42/;
43
44=head1 NAME
45
46DBIx::Class::Storage::DBI::Sybase::ASE - Sybase ASE SQL Server support for
47DBIx::Class
48
49=head1 SYNOPSIS
50
51This subclass supports L<DBD::Sybase> for real (non-Microsoft) Sybase databases.
52
53=head1 DESCRIPTION
54
55If your version of Sybase does not support placeholders, then your storage will
56be reblessed to L<DBIx::Class::Storage::DBI::Sybase::ASE::NoBindVars>.
57You can also enable that driver explicitly, see the documentation for more
58details.
59
60With this driver there is unfortunately no way to get the C<last_insert_id>
61without doing a C<SELECT MAX(col)>. This is done safely in a transaction
62(locking the table.) See L</INSERTS WITH PLACEHOLDERS>.
63
8384a713 64A recommended L<connect_info|DBIx::Class::Storage::DBI/connect_info> setting:
057db5ce 65
66 on_connect_call => [['datetime_setup'], ['blob_setup', log_on_update => 0]]
67
68=head1 METHODS
69
70=cut
71
72sub _rebless {
73 my $self = shift;
74
75 my $no_bind_vars = __PACKAGE__ . '::NoBindVars';
76
aca3b4c3 77 if ($self->_using_freetds) {
70171cd7 78 carp_once <<'EOF' unless $ENV{DBIC_SYBASE_FREETDS_NOWARN};
057db5ce 79
80You are using FreeTDS with Sybase.
81
82We will do our best to support this configuration, but please consider this
83support experimental.
84
85TEXT/IMAGE columns will definitely not work.
86
87You are encouraged to recompile DBD::Sybase with the Sybase Open Client libraries
88instead.
89
90See perldoc DBIx::Class::Storage::DBI::Sybase::ASE for more details.
91
92To turn off this warning set the DBIC_SYBASE_FREETDS_NOWARN environment
93variable.
94EOF
95
bbdda281 96 if (not $self->_use_typeless_placeholders) {
97 if ($self->_use_placeholders) {
057db5ce 98 $self->auto_cast(1);
99 }
100 else {
101 $self->ensure_class_loaded($no_bind_vars);
102 bless $self, $no_bind_vars;
103 $self->_rebless;
104 }
105 }
106 }
107
108 elsif (not $self->_get_dbh->{syb_dynamic_supported}) {
109 # not necessarily FreeTDS, but no placeholders nevertheless
110 $self->ensure_class_loaded($no_bind_vars);
111 bless $self, $no_bind_vars;
112 $self->_rebless;
113 }
114 # this is highly unlikely, but we check just in case
bbdda281 115 elsif (not $self->_use_typeless_placeholders) {
057db5ce 116 $self->auto_cast(1);
117 }
118}
119
120sub _init {
121 my $self = shift;
bfec318f 122
123 $self->next::method(@_);
124
125 if ($self->_using_freetds && (my $ver = $self->_using_freetds_version||999) > 0.82) {
126 carp_once(
5c6696c8 127 "Buggy FreeTDS version $ver detected, statement caching will not work and "
bfec318f 128 . 'will be disabled.'
129 );
130 $self->disable_sth_caching(1);
131 }
132
057db5ce 133 $self->_set_max_connect(256);
134
135# create storage for insert/(update blob) transactions,
136# unless this is that storage
fabbd5cc 137 return if $self->_parent_storage;
057db5ce 138
139 my $writer_storage = (ref $self)->new;
140
fabbd5cc 141 $writer_storage->_is_writer_storage(1); # just info
057db5ce 142 $writer_storage->connect_info($self->connect_info);
143 $writer_storage->auto_cast($self->auto_cast);
144
fabbd5cc 145 weaken ($writer_storage->{_parent_storage} = $self);
057db5ce 146 $self->_writer_storage($writer_storage);
147
148# create a bulk storage unless connect_info is a coderef
149 return if ref($self->_dbi_connect_info->[0]) eq 'CODE';
150
151 my $bulk_storage = (ref $self)->new;
152
057db5ce 153 $bulk_storage->_is_bulk_storage(1); # for special ->disconnect acrobatics
154 $bulk_storage->connect_info($self->connect_info);
155
156# this is why
157 $bulk_storage->_dbi_connect_info->[0] .= ';bulkLogin=1';
158
fabbd5cc 159 weaken ($bulk_storage->{_parent_storage} = $self);
057db5ce 160 $self->_bulk_storage($bulk_storage);
161}
162
163for my $method (@also_proxy_to_extra_storages) {
164 no strict 'refs';
165 no warnings 'redefine';
166
167 my $replaced = __PACKAGE__->can($method);
168
169 *{$method} = Sub::Name::subname $method => sub {
170 my $self = shift;
171 $self->_writer_storage->$replaced(@_) if $self->_writer_storage;
172 $self->_bulk_storage->$replaced(@_) if $self->_bulk_storage;
173 return $self->$replaced(@_);
174 };
175}
176
177sub disconnect {
178 my $self = shift;
179
180# Even though we call $sth->finish for uses off the bulk API, there's still an
181# "active statement" warning on disconnect, which we throw away here.
2a6dda4b 182# This is due to the bug described in _insert_bulk.
057db5ce 183# Currently a noop because 'prepare' is used instead of 'prepare_cached'.
052a832c 184 local $SIG{__WARN__} = sigwarn_silencer(qr/active statement/i)
185 if $self->_is_bulk_storage;
057db5ce 186
187# so that next transaction gets a dbh
188 $self->_began_bulk_work(0) if $self->_is_bulk_storage;
189
190 $self->next::method;
191}
192
c1e5a9ac 193# This is only invoked for FreeTDS drivers by ::Storage::DBI::Sybase::FreeTDS
194sub _set_autocommit_stmt {
195 my ($self, $on) = @_;
196
197 return 'SET CHAINED ' . ($on ? 'OFF' : 'ON');
198}
199
057db5ce 200# Set up session settings for Sybase databases for the connection.
201#
202# Make sure we have CHAINED mode turned on if AutoCommit is off in non-FreeTDS
203# DBD::Sybase (since we don't know how DBD::Sybase was compiled.) If however
204# we're using FreeTDS, CHAINED mode turns on an implicit transaction which we
205# only want when AutoCommit is off.
057db5ce 206sub _run_connection_actions {
207 my $self = shift;
208
209 if ($self->_is_bulk_storage) {
c1e5a9ac 210 # this should be cleared on every reconnect
057db5ce 211 $self->_began_bulk_work(0);
212 return;
213 }
214
c1e5a9ac 215 $self->_dbh->{syb_chained_txn} = 1
aca3b4c3 216 unless $self->_using_freetds;
057db5ce 217
218 $self->next::method(@_);
219}
220
221=head2 connect_call_blob_setup
222
223Used as:
224
225 on_connect_call => [ [ 'blob_setup', log_on_update => 0 ] ]
226
227Does C<< $dbh->{syb_binary_images} = 1; >> to return C<IMAGE> data as raw binary
228instead of as a hex string.
229
230Recommended.
231
232Also sets the C<log_on_update> value for blob write operations. The default is
233C<1>, but C<0> is better if your database is configured for it.
234
235See
5529838f 236L<DBD::Sybase/Handling IMAGE/TEXT data with syb_ct_get_data()/syb_ct_send_data()>.
057db5ce 237
238=cut
239
240sub connect_call_blob_setup {
241 my $self = shift;
242 my %args = @_;
243 my $dbh = $self->_dbh;
244 $dbh->{syb_binary_images} = 1;
245
246 $self->_blob_log_on_update($args{log_on_update})
247 if exists $args{log_on_update};
248}
249
057db5ce 250sub _is_lob_column {
251 my ($self, $source, $column) = @_;
252
253 return $self->_is_lob_type($source->column_info($column)->{data_type});
254}
255
256sub _prep_for_execute {
048c2440 257 my ($self, $op, $ident, $args) = @_;
fabbd5cc 258
048c2440 259 my $limit; # extract and use shortcut on limit without offset
260 if ($op eq 'select' and ! $args->[4] and $limit = $args->[3]) {
261 $args = [ @$args ];
262 $args->[3] = undef;
263 }
264
265 my ($sql, $bind) = $self->next::method($op, $ident, $args);
266
267 # $limit is already sanitized by now
268 $sql = join( "\n",
269 "SET ROWCOUNT $limit",
270 $sql,
271 "SET ROWCOUNT 0",
272 ) if $limit;
057db5ce 273
fabbd5cc 274 if (my $identity_col = $self->_perform_autoinc_retrieval) {
275 $sql .= "\n" . $self->_fetch_identity_sql($ident, $identity_col)
057db5ce 276 }
277
278 return ($sql, $bind);
279}
280
fabbd5cc 281sub _fetch_identity_sql {
282 my ($self, $source, $col) = @_;
057db5ce 283
fabbd5cc 284 return sprintf ("SELECT MAX(%s) FROM %s",
285 map { $self->sql_maker->_quote ($_) } ($col, $source->from)
286 );
057db5ce 287}
288
289# Stolen from SQLT, with some modifications. This is a makeshift
290# solution before a sane type-mapping library is available, thus
291# the 'our' for easy overrides.
292our %TYPE_MAPPING = (
293 number => 'numeric',
294 money => 'money',
295 varchar => 'varchar',
296 varchar2 => 'varchar',
297 timestamp => 'datetime',
298 text => 'varchar',
299 real => 'double precision',
300 comment => 'text',
301 bit => 'bit',
302 tinyint => 'smallint',
303 float => 'double precision',
304 serial => 'numeric',
305 bigserial => 'numeric',
306 boolean => 'varchar',
307 long => 'varchar',
308);
309
310sub _native_data_type {
311 my ($self, $type) = @_;
312
313 $type = lc $type;
314 $type =~ s/\s* identity//x;
315
316 return uc($TYPE_MAPPING{$type} || $type);
317}
318
057db5ce 319
320sub _execute {
321 my $self = shift;
0e773352 322 my ($rv, $sth, @bind) = $self->next::method(@_);
057db5ce 323
044f5b3e 324 $self->_identity( ($sth->fetchall_arrayref)->[0][0] )
fabbd5cc 325 if $self->_perform_autoinc_retrieval;
057db5ce 326
327 return wantarray ? ($rv, $sth, @bind) : $rv;
328}
329
330sub last_insert_id { shift->_identity }
331
332# handles TEXT/IMAGE and transaction for last_insert_id
333sub insert {
334 my $self = shift;
335 my ($source, $to_insert) = @_;
336
e366f807 337 my $columns_info = $source->columns_info;
338
7e017742 339 my ($identity_col) = grep
340 { $columns_info->{$_}{is_auto_increment} }
341 keys %$columns_info
342 ;
343
344 $identity_col = '' if ! defined $identity_col;
057db5ce 345
fabbd5cc 346 # FIXME - this is duplication from DBI.pm. When refactored towards
347 # the LobWriter this can be folded back where it belongs.
348 local $self->{_autoinc_supplied_for_op} = exists $to_insert->{$identity_col}
349 ? 1
350 : 0
351 ;
7e017742 352
353 local $self->{_perform_autoinc_retrieval} = $self->{_autoinc_supplied_for_op}
354 ? undef
355 : $identity_col
fabbd5cc 356 ;
357
057db5ce 358 # check for empty insert
359 # INSERT INTO foo DEFAULT VALUES -- does not work with Sybase
6469dabf 360 # try to insert explicit 'DEFAULT's instead (except for identity, timestamp
361 # and computed columns)
057db5ce 362 if (not %$to_insert) {
363 for my $col ($source->columns) {
364 next if $col eq $identity_col;
6469dabf 365
366 my $info = $source->column_info($col);
367
368 next if ref $info->{default_value} eq 'SCALAR'
369 || (exists $info->{data_type} && (not defined $info->{data_type}));
370
371 next if $info->{data_type} && $info->{data_type} =~ /^timestamp\z/i;
372
057db5ce 373 $to_insert->{$col} = \'DEFAULT';
374 }
375 }
376
377 my $blob_cols = $self->_remove_blob_cols($source, $to_insert);
378
379 # do we need the horrific SELECT MAX(COL) hack?
fabbd5cc 380 my $need_dumb_last_insert_id = (
381 $self->_perform_autoinc_retrieval
7e017742 382 and
383 ( ($self->_identity_method||'') ne '@@IDENTITY' )
fabbd5cc 384 );
057db5ce 385
386 my $next = $self->next::can;
387
388 # we are already in a transaction, or there are no blobs
389 # and we don't need the PK - just (try to) do it
7e017742 390 if (
391 ( !$blob_cols and !$need_dumb_last_insert_id )
392 or
393 $self->transaction_depth
057db5ce 394 ) {
7e017742 395 $self->_insert (
057db5ce 396 $next, $source, $to_insert, $blob_cols, $identity_col
397 );
398 }
057db5ce 399 # otherwise use the _writer_storage to do the insert+transaction on another
400 # connection
7e017742 401 else {
402 my $guard = $self->_writer_storage->txn_scope_guard;
057db5ce 403
7e017742 404 my $updated_cols = $self->_writer_storage->_insert (
405 $next, $source, $to_insert, $blob_cols, $identity_col
406 );
057db5ce 407
7e017742 408 $self->_identity($self->_writer_storage->_identity);
057db5ce 409
7e017742 410 $guard->commit;
057db5ce 411
7e017742 412 $updated_cols;
413 }
057db5ce 414}
415
416sub _insert {
417 my ($self, $next, $source, $to_insert, $blob_cols, $identity_col) = @_;
418
419 my $updated_cols = $self->$next ($source, $to_insert);
420
7e017742 421 $self->_insert_blobs (
422 $source,
423 $blob_cols,
424 {
425 ( $identity_col
426 ? ( $identity_col => $self->last_insert_id($source, $identity_col) )
427 : ()
428 ),
429 %$to_insert,
430 %$updated_cols,
431 },
432 ) if $blob_cols;
057db5ce 433
434 return $updated_cols;
435}
436
437sub update {
438 my $self = shift;
439 my ($source, $fields, $where, @rest) = @_;
440
fabbd5cc 441 #
442 # When *updating* identities, ASE requires SET IDENTITY_UPDATE called
443 #
444 if (my $blob_cols = $self->_remove_blob_cols($source, $fields)) {
057db5ce 445
fabbd5cc 446 # If there are any blobs in $where, Sybase will return a descriptive error
447 # message.
448 # XXX blobs can still be used with a LIKE query, and this should be handled.
057db5ce 449
fabbd5cc 450 # update+blob update(s) done atomically on separate connection
451 $self = $self->_writer_storage;
057db5ce 452
fabbd5cc 453 my $guard = $self->txn_scope_guard;
057db5ce 454
fabbd5cc 455 # First update the blob columns to be updated to '' (taken from $fields, where
456 # it is originally put by _remove_blob_cols .)
457 my %blobs_to_empty = map { ($_ => delete $fields->{$_}) } keys %$blob_cols;
057db5ce 458
fabbd5cc 459 # We can't only update NULL blobs, because blobs cannot be in the WHERE clause.
460 $self->next::method($source, \%blobs_to_empty, $where, @rest);
057db5ce 461
fabbd5cc 462 # Now update the blobs before the other columns in case the update of other
463 # columns makes the search condition invalid.
464 my $rv = $self->_update_blobs($source, $blob_cols, $where);
057db5ce 465
fabbd5cc 466 if (keys %$fields) {
057db5ce 467
fabbd5cc 468 # Now set the identity update flags for the actual update
469 local $self->{_autoinc_supplied_for_op} = (first
470 { $_->{is_auto_increment} }
471 values %{ $source->columns_info([ keys %$fields ]) }
472 ) ? 1 : 0;
057db5ce 473
fabbd5cc 474 my $next = $self->next::can;
475 my $args = \@_;
476 return preserve_context {
477 $self->$next(@$args);
478 } after => sub { $guard->commit };
057db5ce 479 }
480 else {
fabbd5cc 481 $guard->commit;
482 return $rv;
057db5ce 483 }
484 }
fabbd5cc 485 else {
486 # Set the identity update flags for the actual update
487 local $self->{_autoinc_supplied_for_op} = (first
488 { $_->{is_auto_increment} }
489 values %{ $source->columns_info([ keys %$fields ]) }
490 ) ? 1 : 0;
491
492 return $self->next::method(@_);
493 }
057db5ce 494}
495
2a6dda4b 496sub _insert_bulk {
057db5ce 497 my $self = shift;
498 my ($source, $cols, $data) = @_;
499
e366f807 500 my $columns_info = $source->columns_info;
501
6298a324 502 my $identity_col =
e366f807 503 first { $columns_info->{$_}{is_auto_increment} }
504 keys %$columns_info;
057db5ce 505
fabbd5cc 506 # FIXME - this is duplication from DBI.pm. When refactored towards
507 # the LobWriter this can be folded back where it belongs.
508 local $self->{_autoinc_supplied_for_op} =
509 (first { $_ eq $identity_col } @$cols)
510 ? 1
511 : 0
512 ;
057db5ce 513
057db5ce 514 my $use_bulk_api =
515 $self->_bulk_storage &&
516 $self->_get_dbh->{syb_has_blk};
517
6d5679b2 518 if (! $use_bulk_api and ref($self->_dbi_connect_info->[0]) eq 'CODE') {
519 carp_unique( join ' ',
520 'Bulk API support disabled due to use of a CODEREF connect_info.',
521 'Reverting to regular array inserts.',
522 );
057db5ce 523 }
524
525 if (not $use_bulk_api) {
526 my $blob_cols = $self->_remove_blob_cols_array($source, $cols, $data);
527
52cef7e3 528# next::method uses a txn anyway, but it ends too early in case we need to
057db5ce 529# select max(col) to get the identity for inserting blobs.
7e017742 530 ($self, my $guard) = $self->transaction_depth
531 ? ($self, undef)
532 : ($self->_writer_storage, $self->_writer_storage->txn_scope_guard)
533 ;
057db5ce 534
057db5ce 535 $self->next::method(@_);
536
537 if ($blob_cols) {
fabbd5cc 538 if ($self->_autoinc_supplied_for_op) {
057db5ce 539 $self->_insert_blobs_array ($source, $blob_cols, $cols, $data);
540 }
541 else {
542 my @cols_with_identities = (@$cols, $identity_col);
543
544 ## calculate identities
545 # XXX This assumes identities always increase by 1, which may or may not
546 # be true.
547 my ($last_identity) =
548 $self->_dbh->selectrow_array (
549 $self->_fetch_identity_sql($source, $identity_col)
550 );
551 my @identities = (($last_identity - @$data + 1) .. $last_identity);
552
553 my @data_with_identities = map [@$_, shift @identities], @$data;
554
555 $self->_insert_blobs_array (
556 $source, $blob_cols, \@cols_with_identities, \@data_with_identities
557 );
558 }
559 }
560
561 $guard->commit if $guard;
562
563 return;
564 }
565
566# otherwise, use the bulk API
567
568# rearrange @$data so that columns are in database order
6d5679b2 569# and so we submit a full column list
570 my %orig_order = map { $cols->[$_] => $_ } 0..$#$cols;
057db5ce 571
6d5679b2 572 my @source_columns = $source->columns;
573
574 # bcp identity index is 1-based
575 my $identity_idx = first { $source_columns[$_] eq $identity_col } (0..$#source_columns);
576 $identity_idx = defined $identity_idx ? $identity_idx + 1 : 0;
057db5ce 577
578 my @new_data;
6d5679b2 579 for my $slice_idx (0..$#$data) {
580 push @new_data, [map {
fabbd5cc 581 # identity data will be 'undef' if not _autoinc_supplied_for_op()
6d5679b2 582 # columns with defaults will also be 'undef'
583 exists $orig_order{$_}
584 ? $data->[$slice_idx][$orig_order{$_}]
585 : undef
586 } @source_columns];
057db5ce 587 }
588
6d5679b2 589 my $proto_bind = $self->_resolve_bindattrs(
590 $source,
591 [map {
592 [ { dbic_colname => $source_columns[$_], _bind_data_slice_idx => $_ }
593 => $new_data[0][$_] ]
594 } (0 ..$#source_columns) ],
595 $columns_info
596 );
057db5ce 597
598## Set a client-side conversion error handler, straight from DBD::Sybase docs.
599# This ignores any data conversion errors detected by the client side libs, as
600# they are usually harmless.
601 my $orig_cslib_cb = DBD::Sybase::set_cslib_cb(
2a6dda4b 602 Sub::Name::subname _insert_bulk_cslib_errhandler => sub {
057db5ce 603 my ($layer, $origin, $severity, $errno, $errmsg, $osmsg, $blkmsg) = @_;
604
605 return 1 if $errno == 36;
606
607 carp
608 "Layer: $layer, Origin: $origin, Severity: $severity, Error: $errno" .
609 ($errmsg ? "\n$errmsg" : '') .
610 ($osmsg ? "\n$osmsg" : '') .
611 ($blkmsg ? "\n$blkmsg" : '');
612
613 return 0;
614 });
615
4edfce2f 616 my $exception = '';
ed7ab0f4 617 try {
057db5ce 618 my $bulk = $self->_bulk_storage;
619
620 my $guard = $bulk->txn_scope_guard;
621
6d5679b2 622## FIXME - once this is done - address the FIXME on finish() below
057db5ce 623## XXX get this to work instead of our own $sth
624## will require SQLA or *Hacks changes for ordered columns
625# $bulk->next::method($source, \@source_columns, \@new_data, {
626# syb_bcp_attribs => {
fabbd5cc 627# identity_flag => $self->_autoinc_supplied_for_op ? 1 : 0,
057db5ce 628# identity_column => $identity_idx,
629# }
630# });
631 my $sql = 'INSERT INTO ' .
632 $bulk->sql_maker->_quote($source->name) . ' (' .
633# colname list is ignored for BCP, but does no harm
634 (join ', ', map $bulk->sql_maker->_quote($_), @source_columns) . ') '.
635 ' VALUES ('. (join ', ', ('?') x @source_columns) . ')';
636
637## XXX there's a bug in the DBD::Sybase bulk support that makes $sth->finish for
638## a prepare_cached statement ineffective. Replace with ->sth when fixed, or
639## better yet the version above. Should be fixed in DBD::Sybase .
640 my $sth = $bulk->_get_dbh->prepare($sql,
641# 'insert', # op
642 {
643 syb_bcp_attribs => {
fabbd5cc 644 identity_flag => $self->_autoinc_supplied_for_op ? 1 : 0,
057db5ce 645 identity_column => $identity_idx,
646 }
647 }
648 );
649
6d5679b2 650 {
651 # FIXME the $sth->finish in _execute_array does a rollback for some
652 # reason. Disable it temporarily until we fix the SQLMaker thing above
653 no warnings 'redefine';
654 no strict 'refs';
655 local *{ref($sth).'::finish'} = sub {};
057db5ce 656
52cef7e3 657 $self->_dbh_execute_for_fetch(
6d5679b2 658 $source, $sth, $proto_bind, \@source_columns, \@new_data
659 );
660 }
661
662 $guard->commit;
057db5ce 663
664 $bulk->_query_end($sql);
ed7ab0f4 665 } catch {
666 $exception = shift;
057db5ce 667 };
668
057db5ce 669 DBD::Sybase::set_cslib_cb($orig_cslib_cb);
670
671 if ($exception =~ /-Y option/) {
f32e99f9 672 my $w = 'Sybase bulk API operation failed due to character set incompatibility, '
5241250d 673 . 'reverting to regular array inserts. Try unsetting the LC_ALL environment variable'
f32e99f9 674 ;
675 $w .= "\n$exception" if $self->debug;
676 carp $w;
057db5ce 677
057db5ce 678 $self->_bulk_storage(undef);
679 unshift @_, $self;
2a6dda4b 680 goto \&_insert_bulk;
057db5ce 681 }
682 elsif ($exception) {
683# rollback makes the bulkLogin connection unusable
684 $self->_bulk_storage->disconnect;
685 $self->throw_exception($exception);
686 }
687}
688
057db5ce 689# Make sure blobs are not bound as placeholders, and return any non-empty ones
690# as a hash.
691sub _remove_blob_cols {
692 my ($self, $source, $fields) = @_;
693
694 my %blob_cols;
695
696 for my $col (keys %$fields) {
697 if ($self->_is_lob_column($source, $col)) {
698 my $blob_val = delete $fields->{$col};
699 if (not defined $blob_val) {
700 $fields->{$col} = \'NULL';
701 }
702 else {
703 $fields->{$col} = \"''";
704 $blob_cols{$col} = $blob_val unless $blob_val eq '';
705 }
706 }
707 }
708
709 return %blob_cols ? \%blob_cols : undef;
710}
711
2a6dda4b 712# same for _insert_bulk
057db5ce 713sub _remove_blob_cols_array {
714 my ($self, $source, $cols, $data) = @_;
715
716 my @blob_cols;
717
718 for my $i (0..$#$cols) {
719 my $col = $cols->[$i];
720
721 if ($self->_is_lob_column($source, $col)) {
722 for my $j (0..$#$data) {
723 my $blob_val = delete $data->[$j][$i];
724 if (not defined $blob_val) {
725 $data->[$j][$i] = \'NULL';
726 }
727 else {
728 $data->[$j][$i] = \"''";
729 $blob_cols[$j][$i] = $blob_val
730 unless $blob_val eq '';
731 }
732 }
733 }
734 }
735
736 return @blob_cols ? \@blob_cols : undef;
737}
738
739sub _update_blobs {
740 my ($self, $source, $blob_cols, $where) = @_;
741
9780718f 742 my @primary_cols = try
56ad42bb 743 { $source->_pri_cols_or_die }
9780718f 744 catch {
745 $self->throw_exception("Cannot update TEXT/IMAGE column(s): $_")
746 };
057db5ce 747
564986d6 748 my @pks_to_update;
749 if (
750 ref $where eq 'HASH'
751 and
7e017742 752 ! grep { ! defined $where->{$_} } @primary_cols
564986d6 753 ) {
057db5ce 754 my %row_to_update;
755 @row_to_update{@primary_cols} = @{$where}{@primary_cols};
564986d6 756 @pks_to_update = \%row_to_update;
757 }
758 else {
057db5ce 759 my $cursor = $self->select ($source, \@primary_cols, $where, {});
564986d6 760 @pks_to_update = map {
057db5ce 761 my %row; @row{@primary_cols} = @$_; \%row
762 } $cursor->all;
763 }
764
564986d6 765 for my $ident (@pks_to_update) {
766 $self->_insert_blobs($source, $blob_cols, $ident);
057db5ce 767 }
768}
769
770sub _insert_blobs {
7e017742 771 my ($self, $source, $blob_cols, $row_data) = @_;
057db5ce 772
773 my $table = $source->name;
774
9780718f 775 my @primary_cols = try
56ad42bb 776 { $source->_pri_cols_or_die }
9780718f 777 catch {
778 $self->throw_exception("Cannot update TEXT/IMAGE column(s): $_")
779 };
057db5ce 780
781 $self->throw_exception('Cannot update TEXT/IMAGE column(s) without primary key values')
7e017742 782 if grep { ! defined $row_data->{$_} } @primary_cols;
783
784 my %where = map {( $_ => $row_data->{$_} )} @primary_cols;
057db5ce 785
786 for my $col (keys %$blob_cols) {
787 my $blob = $blob_cols->{$col};
788
057db5ce 789 my $cursor = $self->select ($source, [$col], \%where, {});
790 $cursor->next;
791 my $sth = $cursor->sth;
792
793 if (not $sth) {
057db5ce 794 $self->throw_exception(
795 "Could not find row in table '$table' for blob update:\n"
6298a324 796 . (Dumper \%where)
057db5ce 797 );
798 }
799
9780718f 800 try {
057db5ce 801 do {
802 $sth->func('CS_GET', 1, 'ct_data_info') or die $sth->errstr;
803 } while $sth->fetch;
804
805 $sth->func('ct_prepare_send') or die $sth->errstr;
806
807 my $log_on_update = $self->_blob_log_on_update;
808 $log_on_update = 1 if not defined $log_on_update;
809
810 $sth->func('CS_SET', 1, {
811 total_txtlen => length($blob),
812 log_on_update => $log_on_update
813 }, 'ct_data_info') or die $sth->errstr;
814
815 $sth->func($blob, length($blob), 'ct_send_data') or die $sth->errstr;
816
817 $sth->func('ct_finish_send') or die $sth->errstr;
9780718f 818 }
819 catch {
aca3b4c3 820 if ($self->_using_freetds) {
057db5ce 821 $self->throw_exception (
9780718f 822 "TEXT/IMAGE operation failed, probably because you are using FreeTDS: $_"
057db5ce 823 );
9780718f 824 }
825 else {
826 $self->throw_exception($_);
057db5ce 827 }
828 }
9780718f 829 finally {
830 $sth->finish if $sth;
831 };
057db5ce 832 }
833}
834
835sub _insert_blobs_array {
836 my ($self, $source, $blob_cols, $cols, $data) = @_;
837
838 for my $i (0..$#$data) {
839 my $datum = $data->[$i];
840
841 my %row;
842 @row{ @$cols } = @$datum;
843
844 my %blob_vals;
845 for my $j (0..$#$cols) {
846 if (exists $blob_cols->[$i][$j]) {
847 $blob_vals{ $cols->[$j] } = $blob_cols->[$i][$j];
848 }
849 }
850
851 $self->_insert_blobs ($source, \%blob_vals, \%row);
852 }
853}
854
855=head2 connect_call_datetime_setup
856
857Used as:
858
859 on_connect_call => 'datetime_setup'
860
8384a713 861In L<connect_info|DBIx::Class::Storage::DBI/connect_info> to set:
057db5ce 862
863 $dbh->syb_date_fmt('ISO_strict'); # output fmt: 2004-08-21T14:36:48.080Z
864 $dbh->do('set dateformat mdy'); # input fmt: 08/13/1979 18:08:55.080
865
c1e5a9ac 866This works for both C<DATETIME> and C<SMALLDATETIME> columns, note that
057db5ce 867C<SMALLDATETIME> columns only have minute precision.
868
869=cut
870
70c28808 871sub connect_call_datetime_setup {
872 my $self = shift;
873 my $dbh = $self->_get_dbh;
057db5ce 874
70c28808 875 if ($dbh->can('syb_date_fmt')) {
876 # amazingly, this works with FreeTDS
877 $dbh->syb_date_fmt('ISO_strict');
878 }
879 else {
880 carp_once
881 'Your DBD::Sybase is too old to support '
882 .'DBIx::Class::InflateColumn::DateTime, please upgrade!';
057db5ce 883
c6b7885f 884 # FIXME - in retrospect this is a rather bad US-centric choice
885 # of format. Not changing as a bugwards compat, though in reality
886 # the only piece that sees the results of $dt object formatting
887 # (as opposed to parsing) is the database itself, so theoretically
888 # changing both this SET command and the formatter definition of
889 # ::S::D::Sybase::ASE::DateTime::Format below should be safe and
890 # transparent
891
057db5ce 892 $dbh->do('SET DATEFORMAT mdy');
057db5ce 893 }
894}
895
057db5ce 896
90d7422f 897sub _exec_txn_begin {
057db5ce 898 my $self = shift;
899
900# bulkLogin=1 connections are always in a transaction, and can only call BEGIN
901# TRAN once. However, we need to make sure there's a $dbh.
902 return if $self->_is_bulk_storage && $self->_dbh && $self->_began_bulk_work;
903
904 $self->next::method(@_);
905
057db5ce 906 $self->_began_bulk_work(1) if $self->_is_bulk_storage;
907}
908
057db5ce 909# savepoint support using ASE syntax
910
90d7422f 911sub _exec_svp_begin {
057db5ce 912 my ($self, $name) = @_;
913
90d7422f 914 $self->_dbh->do("SAVE TRANSACTION $name");
057db5ce 915}
916
917# A new SAVE TRANSACTION with the same name releases the previous one.
90d7422f 918sub _exec_svp_release { 1 }
057db5ce 919
90d7422f 920sub _exec_svp_rollback {
057db5ce 921 my ($self, $name) = @_;
922
90d7422f 923 $self->_dbh->do("ROLLBACK TRANSACTION $name");
057db5ce 924}
925
deabd575 926package # hide from PAUSE
927 DBIx::Class::Storage::DBI::Sybase::ASE::DateTime::Format;
928
929my $datetime_parse_format = '%Y-%m-%dT%H:%M:%S.%3NZ';
930my $datetime_format_format = '%m/%d/%Y %H:%M:%S.%3N';
931
932my ($datetime_parser, $datetime_formatter);
933
934sub parse_datetime {
935 shift;
936 require DateTime::Format::Strptime;
937 $datetime_parser ||= DateTime::Format::Strptime->new(
938 pattern => $datetime_parse_format,
939 on_error => 'croak',
940 );
941 return $datetime_parser->parse_datetime(shift);
942}
943
944sub format_datetime {
945 shift;
946 require DateTime::Format::Strptime;
947 $datetime_formatter ||= DateTime::Format::Strptime->new(
948 pattern => $datetime_format_format,
949 on_error => 'croak',
950 );
951 return $datetime_formatter->format_datetime(shift);
952}
953
057db5ce 9541;
955
956=head1 Schema::Loader Support
957
290da7d6 958As of version C<0.05000>, L<DBIx::Class::Schema::Loader> should work well with
c1e5a9ac 959most versions of Sybase ASE.
057db5ce 960
961=head1 FreeTDS
962
963This driver supports L<DBD::Sybase> compiled against FreeTDS
964(L<http://www.freetds.org/>) to the best of our ability, however it is
965recommended that you recompile L<DBD::Sybase> against the Sybase Open Client
966libraries. They are a part of the Sybase ASE distribution:
967
968The Open Client FAQ is here:
969L<http://www.isug.com/Sybase_FAQ/ASE/section7.html>.
970
971Sybase ASE for Linux (which comes with the Open Client libraries) may be
972downloaded here: L<http://response.sybase.com/forms/ASE_Linux_Download>.
973
aca3b4c3 974To see if you're using FreeTDS run:
057db5ce 975
976 perl -MDBI -le 'my $dbh = DBI->connect($dsn, $user, $pass); print $dbh->{syb_oc_version}'
977
c1e5a9ac 978It is recommended to set C<tds version> for your ASE server to C<5.0> in
979C</etc/freetds/freetds.conf>.
980
981Some versions or configurations of the libraries involved will not support
982placeholders, in which case the storage will be reblessed to
057db5ce 983L<DBIx::Class::Storage::DBI::Sybase::ASE::NoBindVars>.
984
985In some configurations, placeholders will work but will throw implicit type
986conversion errors for anything that's not expecting a string. In such a case,
987the C<auto_cast> option from L<DBIx::Class::Storage::DBI::AutoCast> is
988automatically set, which you may enable on connection with
c1e5a9ac 989L<connect_call_set_auto_cast|DBIx::Class::Storage::DBI::AutoCast/connect_call_set_auto_cast>.
990The type info for the C<CAST>s is taken from the
991L<DBIx::Class::ResultSource/data_type> definitions in your Result classes, and
992are mapped to a Sybase type (if it isn't already) using a mapping based on
993L<SQL::Translator>.
057db5ce 994
48580715 995In other configurations, placeholders will work just as they do with the Sybase
057db5ce 996Open Client libraries.
997
998Inserts or updates of TEXT/IMAGE columns will B<NOT> work with FreeTDS.
999
1000=head1 INSERTS WITH PLACEHOLDERS
1001
1002With placeholders enabled, inserts are done in a transaction so that there are
1003no concurrency issues with getting the inserted identity value using
1004C<SELECT MAX(col)>, which is the only way to get the C<IDENTITY> value in this
1005mode.
1006
1007In addition, they are done on a separate connection so that it's possible to
1008have active cursors when doing an insert.
1009
1010When using C<DBIx::Class::Storage::DBI::Sybase::ASE::NoBindVars> transactions
c1e5a9ac 1011are unnecessary and not used, as there are no concurrency issues with C<SELECT
1012@@IDENTITY> which is a session variable.
057db5ce 1013
1014=head1 TRANSACTIONS
1015
c1e5a9ac 1016Due to limitations of the TDS protocol and L<DBD::Sybase>, you cannot begin a
1017transaction while there are active cursors, nor can you use multiple active
1018cursors within a transaction. An active cursor is, for example, a
057db5ce 1019L<ResultSet|DBIx::Class::ResultSet> that has been executed using C<next> or
1020C<first> but has not been exhausted or L<reset|DBIx::Class::ResultSet/reset>.
1021
1022For example, this will not work:
1023
1024 $schema->txn_do(sub {
1025 my $rs = $schema->resultset('Book');
47d7b769 1026 while (my $result = $rs->next) {
057db5ce 1027 $schema->resultset('MetaData')->create({
47d7b769 1028 book_id => $result->id,
057db5ce 1029 ...
1030 });
1031 }
1032 });
1033
1034This won't either:
1035
1036 my $first_row = $large_rs->first;
1037 $schema->txn_do(sub { ... });
1038
1039Transactions done for inserts in C<AutoCommit> mode when placeholders are in use
1040are not affected, as they are done on an extra database handle.
1041
1042Some workarounds:
1043
1044=over 4
1045
1046=item * use L<DBIx::Class::Storage::DBI::Replicated>
1047
1048=item * L<connect|DBIx::Class::Schema/connect> another L<Schema|DBIx::Class::Schema>
1049
1050=item * load the data from your cursor with L<DBIx::Class::ResultSet/all>
1051
1052=back
1053
1054=head1 MAXIMUM CONNECTIONS
1055
1056The TDS protocol makes separate connections to the server for active statements
1057in the background. By default the number of such connections is limited to 25,
1058on both the client side and the server side.
1059
1060This is a bit too low for a complex L<DBIx::Class> application, so on connection
1061the client side setting is set to C<256> (see L<DBD::Sybase/maxConnect>.) You
1062can override it to whatever setting you like in the DSN.
1063
1064See
1065L<http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.help.ase_15.0.sag1/html/sag1/sag1272.htm>
1066for information on changing the setting on the server side.
1067
1068=head1 DATES
1069
1070See L</connect_call_datetime_setup> to setup date formats
1071for L<DBIx::Class::InflateColumn::DateTime>.
1072
9c510ba5 1073=head1 LIMITED QUERIES
1074
5529838f 1075Because ASE does not have a good way to limit results in SQL that works for
1076all types of queries, the limit dialect is set to
1077L<GenericSubQ|DBIx::Class::SQLMaker::LimitDialects/GenericSubQ>.
9c510ba5 1078
1079Fortunately, ASE and L<DBD::Sybase> support cursors properly, so when
5529838f 1080L<GenericSubQ|DBIx::Class::SQLMaker::LimitDialects/GenericSubQ> is too slow
1081you can use the L<software_limit|DBIx::Class::ResultSet/software_limit>
1082L<DBIx::Class::ResultSet> attribute to simulate limited queries by skipping
1083over records.
9c510ba5 1084
057db5ce 1085=head1 TEXT/IMAGE COLUMNS
1086
1087L<DBD::Sybase> compiled with FreeTDS will B<NOT> allow you to insert or update
1088C<TEXT/IMAGE> columns.
1089
1090Setting C<< $dbh->{LongReadLen} >> will also not work with FreeTDS use either:
1091
1092 $schema->storage->dbh->do("SET TEXTSIZE $bytes");
1093
1094or
1095
1096 $schema->storage->set_textsize($bytes);
1097
1098instead.
1099
1100However, the C<LongReadLen> you pass in
8384a713 1101L<connect_info|DBIx::Class::Storage::DBI/connect_info> is used to execute the
1102equivalent C<SET TEXTSIZE> command on connection.
057db5ce 1103
8384a713 1104See L</connect_call_blob_setup> for a
1105L<connect_info|DBIx::Class::Storage::DBI/connect_info> setting you need to work
1106with C<IMAGE> columns.
057db5ce 1107
1108=head1 BULK API
1109
1110The experimental L<DBD::Sybase> Bulk API support is used for
1111L<populate|DBIx::Class::ResultSet/populate> in B<void> context, in a transaction
1112on a separate connection.
1113
1114To use this feature effectively, use a large number of rows for each
1115L<populate|DBIx::Class::ResultSet/populate> call, eg.:
1116
1117 while (my $rows = $data_source->get_100_rows()) {
1118 $rs->populate($rows);
1119 }
1120
1121B<NOTE:> the L<add_columns|DBIx::Class::ResultSource/add_columns>
1122calls in your C<Result> classes B<must> list columns in database order for this
5241250d 1123to work. Also, you may have to unset the C<LC_ALL> environment variable before
c1e5a9ac 1124loading your app, as C<BCP -Y> is not yet supported in DBD::Sybase .
057db5ce 1125
1126When inserting IMAGE columns using this method, you'll need to use
1127L</connect_call_blob_setup> as well.
1128
6476fd66 1129=head1 COMPUTED COLUMNS
1130
1131If you have columns such as:
1132
1133 created_dtm AS getdate()
1134
1135represent them in your Result classes as:
1136
1137 created_dtm => {
1138 data_type => undef,
1139 default_value => \'getdate()',
1140 is_nullable => 0,
c1e5a9ac 1141 inflate_datetime => 1,
6476fd66 1142 }
1143
1144The C<data_type> must exist and must be C<undef>. Then empty inserts will work
1145on tables with such columns.
1146
1147=head1 TIMESTAMP COLUMNS
1148
1149C<timestamp> columns in Sybase ASE are not really timestamps, see:
1150L<http://dba.fyicenter.com/Interview-Questions/SYBASE/The_timestamp_datatype_in_Sybase_.html>.
1151
1152They should be defined in your Result classes as:
1153
1154 ts => {
1155 data_type => 'timestamp',
1156 is_nullable => 0,
1157 inflate_datetime => 0,
1158 }
1159
1160The C<<inflate_datetime => 0>> is necessary if you use
1161L<DBIx::Class::InflateColumn::DateTime>, and most people do, and still want to
1162be able to read these values.
1163
1164The values will come back as hexadecimal.
1165
057db5ce 1166=head1 TODO
1167
1168=over
1169
1170=item *
1171
1172Transitions to AutoCommit=0 (starting a transaction) mode by exhausting
1173any active cursors, using eager cursors.
1174
1175=item *
1176
1177Real limits and limited counts using stored procedures deployed on startup.
1178
1179=item *
1180
057db5ce 1181Blob update with a LIKE query on a blob, without invalidating the WHERE condition.
1182
1183=item *
1184
1185bulk_insert using prepare_cached (see comments.)
1186
1187=back
1188
a2bd3796 1189=head1 FURTHER QUESTIONS?
057db5ce 1190
a2bd3796 1191Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
057db5ce 1192
a2bd3796 1193=head1 COPYRIGHT AND LICENSE
057db5ce 1194
a2bd3796 1195This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
1196by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
1197redistribute it and/or modify it under the same terms as the
1198L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.