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