Fold column_info() into columns_info()
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Oracle / Generic.pm
CommitLineData
18360aed 1package DBIx::Class::Storage::DBI::Oracle::Generic;
2
3use strict;
4use warnings;
5e782048 5use base qw/DBIx::Class::Storage::DBI/;
6use mro 'c3';
7use DBIx::Class::Carp;
b7b18f32 8use Scope::Guard ();
6298a324 9use Context::Preserve 'preserve_context';
7b731f1e 10use DBIx::Class::_Util qw( modver_gt_or_eq modver_gt_or_eq_and_lt dbic_internal_try );
fd323bf1 11use namespace::clean;
18360aed 12
6a247f33 13__PACKAGE__->sql_limit_dialect ('RowNum');
2b8cc2f2 14__PACKAGE__->sql_quote_char ('"');
5e782048 15__PACKAGE__->sql_maker_class('DBIx::Class::SQLMaker::Oracle');
16__PACKAGE__->datetime_parser_type('DateTime::Format::Oracle');
17
18sub __cache_queries_with_max_lob_parts { 2 }
6a247f33 19
7137528d 20=head1 NAME
21
7a84c41b 22DBIx::Class::Storage::DBI::Oracle::Generic - Oracle Support for DBIx::Class
7137528d 23
24=head1 SYNOPSIS
25
d88ecca6 26 # In your result (table) classes
27 use base 'DBIx::Class::Core';
2e46b6eb 28 __PACKAGE__->add_columns({ id => { sequence => 'mysequence', auto_nextval => 1 } });
7137528d 29 __PACKAGE__->set_primary_key('id');
7137528d 30
c0024355 31 # Somewhere in your Code
32 # add some data to a table with a hierarchical relationship
33 $schema->resultset('Person')->create ({
34 firstname => 'foo',
35 lastname => 'bar',
36 children => [
37 {
38 firstname => 'child1',
39 lastname => 'bar',
40 children => [
41 {
42 firstname => 'grandchild',
43 lastname => 'bar',
44 }
45 ],
46 },
47 {
48 firstname => 'child2',
49 lastname => 'bar',
50 },
51 ],
52 });
53
54 # select from the hierarchical relationship
55 my $rs = $schema->resultset('Person')->search({},
56 {
57 'start_with' => { 'firstname' => 'foo', 'lastname' => 'bar' },
e6600283 58 'connect_by' => { 'parentid' => { '-prior' => { -ident => 'personid' } },
25ca709b 59 'order_siblings_by' => { -asc => 'name' },
c0024355 60 };
61 );
62
63 # this will select the whole tree starting from person "foo bar", creating
64 # following query:
65 # SELECT
66 # me.persionid me.firstname, me.lastname, me.parentid
67 # FROM
68 # person me
69 # START WITH
70 # firstname = 'foo' and lastname = 'bar'
71 # CONNECT BY
e6600283 72 # parentid = prior personid
c0024355 73 # ORDER SIBLINGS BY
74 # firstname ASC
75
7137528d 76=head1 DESCRIPTION
77
6c0230de 78This class implements base Oracle support. The subclass
79L<DBIx::Class::Storage::DBI::Oracle::WhereJoins> is for C<(+)> joins in Oracle
86b23415 80versions before 9.0.
7137528d 81
82=head1 METHODS
83
84=cut
85
bf51641f 86sub _determine_supports_insert_returning {
87 my $self = shift;
88
89# TODO find out which version supports the RETURNING syntax
90# 8i has it and earlier docs are a 404 on oracle.com
91
92 return 1
93 if $self->_server_info->{normalized_dbms_version} >= 8.001;
94
95 return 0;
96}
97
98__PACKAGE__->_use_insert_returning_bound (1);
99
dd2600c6 100sub deployment_statements {
101 my $self = shift;;
102 my ($schema, $type, $version, $dir, $sqltargs, @rest) = @_;
103
104 $sqltargs ||= {};
dd2600c6 105
96736321 106 if (
107 ! exists $sqltargs->{producer_args}{oracle_version}
108 and
109 my $dver = $self->_server_info->{dbms_version}
110 ) {
111 $sqltargs->{producer_args}{oracle_version} = $dver;
112 }
a4433d8e 113
38aead8e 114 $self->next::method($schema, $type, $version, $dir, $sqltargs, @rest);
dd2600c6 115}
116
18360aed 117sub _dbh_last_insert_id {
2e46b6eb 118 my ($self, $dbh, $source, @columns) = @_;
119 my @ids = ();
b83736a7 120 my $ci = $source->columns_info(\@columns);
2e46b6eb 121 foreach my $col (@columns) {
b83736a7 122 my $seq = ( $ci->{$col}{sequence} ||= $self->get_autoinc_seq($source,$col));
07cda1c5 123 my $id = $self->_sequence_fetch( 'CURRVAL', $seq );
2e46b6eb 124 push @ids, $id;
125 }
126 return @ids;
18360aed 127}
128
129sub _dbh_get_autoinc_seq {
130 my ($self, $dbh, $source, $col) = @_;
131
032b2366 132 my $sql_maker = $self->sql_maker;
07cda1c5 133 my ($ql, $qr) = map { $_ ? (quotemeta $_) : '' } $sql_maker->_quote_chars;
cb464582 134
e6dd7b42 135 my $source_name;
032b2366 136 if ( ref $source->name eq 'SCALAR' ) {
137 $source_name = ${$source->name};
07cda1c5 138
139 # the ALL_TRIGGERS match further on is case sensitive - thus uppercase
140 # stuff unless it is already quoted
141 $source_name = uc ($source_name) if $source_name !~ /\"/;
e6dd7b42 142 }
143 else {
032b2366 144 $source_name = $source->name;
07cda1c5 145 $source_name = uc($source_name) unless $ql;
e6dd7b42 146 }
38aead8e 147
032b2366 148 # trigger_body is a LONG
149 local $dbh->{LongReadLen} = 64 * 1024 if ($dbh->{LongReadLen} < 64 * 1024);
150
151 # disable default bindtype
152 local $sql_maker->{bindtype} = 'normal';
153
154 # look up the correct sequence automatically
07cda1c5 155 my ( $schema, $table ) = $source_name =~ /( (?:${ql})? \w+ (?:${qr})? ) \. ( (?:${ql})? \w+ (?:${qr})? )/x;
a6646e1b 156
157 # if no explicit schema was requested - use the default schema (which in the case of Oracle is the db user)
fcb52f08 158 $schema ||= \'= USER';
a6646e1b 159
032b2366 160 my ($sql, @bind) = $sql_maker->select (
161 'ALL_TRIGGERS',
07cda1c5 162 [qw/TRIGGER_BODY TABLE_OWNER TRIGGER_NAME/],
032b2366 163 {
630eee41 164 OWNER => $schema,
07cda1c5 165 TABLE_NAME => $table || $source_name,
166 TRIGGERING_EVENT => { -like => '%INSERT%' }, # this will also catch insert_or_update
167 TRIGGER_TYPE => { -like => '%BEFORE%' }, # we care only about 'before' triggers
168 STATUS => 'ENABLED',
032b2366 169 },
170 );
e6dd7b42 171
6f5f880d 172 # to find all the triggers that mention the column in question a simple
173 # regex grep since the trigger_body above is a LONG and hence not searchable
630eee41 174 # via -like
6f5f880d 175 my @triggers = ( map
176 { my %inf; @inf{qw/body schema name/} = @$_; \%inf }
177 ( grep
07cda1c5 178 { $_->[0] =~ /\:new\.${ql}${col}${qr} | \:new\.$col/xi }
6f5f880d 179 @{ $dbh->selectall_arrayref( $sql, {}, @bind ) }
180 )
181 );
182
630eee41 183 # extract all sequence names mentioned in each trigger, throw away
184 # triggers without apparent sequences
185 @triggers = map {
186 my @seqs = $_->{body} =~ / ( [\.\w\"\-]+ ) \. nextval /xig;
187 @seqs
188 ? { %$_, sequences => \@seqs }
189 : ()
190 ;
191 } @triggers;
6f5f880d 192
193 my $chosen_trigger;
194
195 # if only one trigger matched things are easy
196 if (@triggers == 1) {
197
198 if ( @{$triggers[0]{sequences}} == 1 ) {
199 $chosen_trigger = $triggers[0];
200 }
201 else {
202 $self->throw_exception( sprintf (
e705f529 203 "Unable to introspect trigger '%s' for column '%s.%s' (references multiple sequences). "
6f5f880d 204 . "You need to specify the correct 'sequence' explicitly in '%s's column_info.",
205 $triggers[0]{name},
206 $source_name,
207 $col,
208 $col,
209 ) );
210 }
211 }
212 # got more than one matching trigger - see if we can narrow it down
213 elsif (@triggers > 1) {
df6e3f5c 214
6f5f880d 215 my @candidates = grep
216 { $_->{body} =~ / into \s+ \:new\.$col /xi }
217 @triggers
218 ;
df6e3f5c 219
6f5f880d 220 if (@candidates == 1 && @{$candidates[0]{sequences}} == 1) {
221 $chosen_trigger = $candidates[0];
df6e3f5c 222 }
6f5f880d 223 else {
224 $self->throw_exception( sprintf (
e705f529 225 "Unable to reliably select a BEFORE INSERT trigger for column '%s.%s' (possibilities: %s). "
6f5f880d 226 . "You need to specify the correct 'sequence' explicitly in '%s's column_info.",
227 $source_name,
228 $col,
229 ( join ', ', map { "'$_->{name}'" } @triggers ),
230 $col,
231 ) );
232 }
233 }
234
235 if ($chosen_trigger) {
236 my $seq_name = $chosen_trigger->{sequences}[0];
237
238 $seq_name = "$chosen_trigger->{schema}.$seq_name"
239 unless $seq_name =~ /\./;
df6e3f5c 240
07cda1c5 241 return \$seq_name if $seq_name =~ /\"/; # may already be quoted in-trigger
df6e3f5c 242 return $seq_name;
18360aed 243 }
6f5f880d 244
245 $self->throw_exception( sprintf (
e705f529 246 "No suitable BEFORE INSERT triggers found for column '%s.%s'. "
6f5f880d 247 . "You need to specify the correct 'sequence' explicitly in '%s's column_info.",
248 $source_name,
249 $col,
250 $col,
251 ));
18360aed 252}
253
2e46b6eb 254sub _sequence_fetch {
255 my ( $self, $type, $seq ) = @_;
07cda1c5 256
257 # use the maker to leverage quoting settings
e6f3272b 258 my $sth = $self->_dbh->prepare_cached(
259 $self->sql_maker->select('DUAL', [ ref $seq ? \"$$seq.$type" : "$seq.$type" ] )
260 );
261 $sth->execute;
262 my ($id) = $sth->fetchrow_array;
263 $sth->finish;
2e46b6eb 264 return $id;
265}
266
6dc4be0f 267sub _ping {
c2481821 268 my $self = shift;
7ba7a57d 269
6dc4be0f 270 my $dbh = $self->_dbh or return 0;
7ba7a57d 271
6dc4be0f 272 local $dbh->{RaiseError} = 1;
ecdf1ac8 273 local $dbh->{PrintError} = 0;
c2d7baef 274
ddcc02d1 275 ( dbic_internal_try {
ecdf1ac8 276 $dbh->do('select 1 from dual');
52b420dd 277 1;
ddcc02d1 278 })
279 ? 1
280 : 0
281 ;
c2481821 282}
283
d789fa99 284sub _dbh_execute {
9930caaf 285 #my ($self, $dbh, $sql, $bind, $bind_attrs) = @_;
7d534e68 286 my ($self, $sql, $bind) = @_[0,2,3];
a6ae092b 287
4b8a53ea 288 # Turn off sth caching for multi-part LOBs. See _prep_for_execute below
87b12551 289 local $self->{disable_sth_caching} = 1 if grep {
a6ae092b 290 ($_->[0]{_ora_lob_autosplit_part}||0)
291 >
292 (__cache_queries_with_max_lob_parts - 1)
293 } @$bind;
d789fa99 294
4f661051 295 my $next = $self->next::can;
87560ef9 296
a6ae092b 297 # if we are already in a txn we can't retry anything
298 return shift->$next(@_)
299 if $self->transaction_depth;
300
7db939de 301 # Cheat the blockrunner we are just about to create:
302 # We *do* want to rerun things regardless of outer state
303 local $self->{_in_do_block}
304 if $self->{_in_do_block};
a6ae092b 305
7db939de 306 DBIx::Class::Storage::BlockRunner->new(
a6ae092b 307 storage => $self,
a6ae092b 308 wrap_txn => 0,
309 retry_handler => sub {
310 # ORA-01003: no statement parsed (someone changed the table somehow,
311 # invalidating your cursor.)
7d534e68 312 if (
313 $_[0]->failed_attempt_count == 1
314 and
315 $_[0]->last_exception =~ /ORA-01003/
316 and
317 my $dbh = $_[0]->storage->_dbh
318 ) {
319 delete $dbh->{CachedKids}{$sql};
320 return 1;
321 }
322 else {
323 return 0;
52b420dd 324 }
a6ae092b 325 },
7d534e68 326 )->run( $next, @_ );
d789fa99 327}
328
52cef7e3 329sub _dbh_execute_for_fetch {
7b731f1e 330 #my ($self, $source, $sth, $proto_bind, $cols, $data) = @_;
a5a27e7a 331
7b731f1e 332 # Older DBD::Oracle warns loudly on partial execute_for_fetch failures
333 # before https://metacpan.org/source/PYTHIAN/DBD-Oracle-1.28/Changes#L7-9
334 local $_[2]->{PrintWarn} = 0
335 unless modver_gt_or_eq( 'DBD::Oracle', '1.28' );
a5a27e7a 336
337 shift->next::method(@_);
338}
339
7137528d 340=head2 get_autoinc_seq
341
342Returns the sequence name for an autoincrement column
343
344=cut
345
18360aed 346sub get_autoinc_seq {
347 my ($self, $source, $col) = @_;
d4daee7b 348
373940e1 349 $self->dbh_do('_dbh_get_autoinc_seq', $source, $col);
18360aed 350}
351
8f7e044c 352=head2 datetime_parser_type
353
354This sets the proper DateTime::Format module for use with
355L<DBIx::Class::InflateColumn::DateTime>.
356
9900b569 357=head2 connect_call_datetime_setup
d2a3958e 358
359Used as:
360
9900b569 361 on_connect_call => 'datetime_setup'
d2a3958e 362
8384a713 363In L<connect_info|DBIx::Class::Storage::DBI/connect_info> to set the session nls
364date, and timestamp values for use with L<DBIx::Class::InflateColumn::DateTime>
365and the necessary environment variables for L<DateTime::Format::Oracle>, which
366is used by it.
d2a3958e 367
82f6f45f 368Maximum allowable precision is used, unless the environment variables have
369already been set.
d2a3958e 370
9900b569 371These are the defaults used:
372
373 $ENV{NLS_DATE_FORMAT} ||= 'YYYY-MM-DD HH24:MI:SS';
374 $ENV{NLS_TIMESTAMP_FORMAT} ||= 'YYYY-MM-DD HH24:MI:SS.FF';
375 $ENV{NLS_TIMESTAMP_TZ_FORMAT} ||= 'YYYY-MM-DD HH24:MI:SS.FF TZHTZM';
376
d9e53b85 377To get more than second precision with L<DBIx::Class::InflateColumn::DateTime>
378for your timestamps, use something like this:
379
380 use Time::HiRes 'time';
381 my $ts = DateTime->from_epoch(epoch => time);
382
d2a3958e 383=cut
384
9900b569 385sub connect_call_datetime_setup {
d2a3958e 386 my $self = shift;
d2a3958e 387
388 my $date_format = $ENV{NLS_DATE_FORMAT} ||= 'YYYY-MM-DD HH24:MI:SS';
389 my $timestamp_format = $ENV{NLS_TIMESTAMP_FORMAT} ||=
390 'YYYY-MM-DD HH24:MI:SS.FF';
391 my $timestamp_tz_format = $ENV{NLS_TIMESTAMP_TZ_FORMAT} ||=
392 'YYYY-MM-DD HH24:MI:SS.FF TZHTZM';
393
7a84c41b 394 $self->_do_query(
d7a58a29 395 "alter session set nls_date_format = '$date_format'"
396 );
7a84c41b 397 $self->_do_query(
d7a58a29 398 "alter session set nls_timestamp_format = '$timestamp_format'"
399 );
7a84c41b 400 $self->_do_query(
d7a58a29 401 "alter session set nls_timestamp_tz_format='$timestamp_tz_format'"
402 );
d2a3958e 403}
404
0e773352 405### Note originally by Ron "Quinn" Straight <quinnfazigu@gmail.org>
406### http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits/DBIx-Class.git;a=commitdiff;h=5db2758de644d53e07cd3e05f0e9037bf40116fc
407#
408# Handle LOB types in Oracle. Under a certain size (4k?), you can get away
409# with the driver assuming your input is the deprecated LONG type if you
410# encode it as a hex string. That ain't gonna fly at larger values, where
411# you'll discover you have to do what this does.
412#
413# This method had to be overridden because we need to set ora_field to the
414# actual column, and that isn't passed to the call (provided by Storage) to
415# bind_attribute_by_data_type.
416#
417# According to L<DBD::Oracle>, the ora_field isn't always necessary, but
418# adding it doesn't hurt, and will save your bacon if you're modifying a
419# table with more than one LOB column.
420#
421sub _dbi_attrs_for_bind {
422 my ($self, $ident, $bind) = @_;
00a28188 423
0e773352 424 my $attrs = $self->next::method($ident, $bind);
425
74113bd1 426 # Push the column name into all bind attrs, make sure to *NOT* write into
427 # the existing $attrs->[$idx]{..} hashref, as it is cached by the call to
428 # next::method above.
e7b6c2a4 429 # FIXME - this code will go away when the LobWriter refactor lands
74113bd1 430 $attrs->[$_]
431 and
432 keys %{ $attrs->[$_] }
433 and
434 $bind->[$_][0]{dbic_colname}
435 and
436 $attrs->[$_] = { %{$attrs->[$_]}, ora_field => $bind->[$_][0]{dbic_colname} }
437 for 0 .. $#$attrs;
5db2758d 438
0e773352 439 $attrs;
440}
5db2758d 441
0e773352 442sub bind_attribute_by_data_type {
443 my ($self, $dt) = @_;
444
8892d8e5 445 if ($self->_is_lob_type($dt)) {
446
7302b3e0 447 # no earlier - no later
448 $self->throw_exception(
449 "BLOB/CLOB support in DBD::Oracle == 1.23 is broken, use an earlier or later "
450 . "version (https://rt.cpan.org/Public/Bug/Display.html?id=46016)"
451 ) if modver_gt_or_eq_and_lt( 'DBD::Oracle', '1.23', '1.24' );
5db2758d 452
0e773352 453 return {
454 ora_type => $self->_is_text_lob_type($dt)
d7a58a29 455 ? DBD::Oracle::ORA_CLOB()
456 : DBD::Oracle::ORA_BLOB()
0e773352 457 };
d7a58a29 458 }
8892d8e5 459 else {
460 return undef;
461 }
5db2758d 462}
463
00a28188 464# Handle blob columns in WHERE.
465#
466# For equality comparisons:
467#
468# We split data intended for comparing to a LOB into 2000 character chunks and
469# compare them using dbms_lob.substr on the LOB column.
470#
471# We turn off DBD::Oracle LOB binds for these partial LOB comparisons by passing
472# dbd_attrs => undef, because these are regular varchar2 comparisons and
473# otherwise the query will fail.
474#
475# Since the most common comparison size is likely to be under 4000 characters
476# (TEXT comparisons previously deployed to other RDBMSes) we disable
477# prepare_cached for queries with more than two part comparisons to a LOB
478# column. This is done in _dbh_execute (above) which was previously overridden
479# to gracefully recover from an Oracle error. This is to be careful to not
480# exhaust your application's open cursor limit.
481#
482# See:
483# http://itcareershift.com/blog1/2011/02/21/oracle-max-number-of-open-cursors-complete-reference-for-the-new-oracle-dba/
484# on the open_cursor limit.
485#
486# For everything else:
487#
488# We assume that everything that is not a LOB comparison, will most likely be a
489# LIKE query or some sort of function invocation. This may prove to be a naive
490# assumption in the future, but for now it should cover the two most likely
491# things users would want to do with a BLOB or CLOB, an equality test or a LIKE
492# query (on a CLOB.)
493#
494# For these expressions, the bind must NOT have the attributes of a LOB bind for
495# DBD::Oracle, otherwise the query will fail. This is done by passing
496# dbd_attrs => undef.
497
498sub _prep_for_execute {
499 my $self = shift;
500 my ($op) = @_;
501
00819de0 502 return $self->next::method(@_)
503 if $op eq 'insert';
00a28188 504
00819de0 505 my ($sql, $bind) = $self->next::method(@_);
00a28188 506
00819de0 507 my $lob_bind_indices = { map {
508 (
5e782048 509 $bind->[$_][0]{sqlt_datatype}
00819de0 510 and
511 $self->_is_lob_type($bind->[$_][0]{sqlt_datatype})
512 ) ? ( $_ => 1 ) : ()
513 } ( 0 .. $#$bind ) };
00a28188 514
00819de0 515 return ($sql, $bind) unless %$lob_bind_indices;
00a28188 516
00819de0 517 my ($final_sql, @final_binds);
518 if ($op eq 'update') {
e705f529 519 $self->throw_exception('Update with complex WHERE clauses involving BLOB columns currently not supported')
5e782048 520 if $sql =~ /\bWHERE\b .+ \bWHERE\b/xs;
521
e12571af 522 my $where_sql;
523 ($final_sql, $where_sql) = $sql =~ /^ (.+?) ( \bWHERE\b .+) /xs;
00819de0 524
525 if (my $set_bind_count = $final_sql =~ y/?//) {
5e782048 526
00819de0 527 delete $lob_bind_indices->{$_} for (0 .. ($set_bind_count - 1));
5e782048 528
00819de0 529 # bail if only the update part contains blobs
530 return ($sql, $bind) unless %$lob_bind_indices;
531
532 @final_binds = splice @$bind, 0, $set_bind_count;
533 $lob_bind_indices = { map
534 { $_ - $set_bind_count => $lob_bind_indices->{$_} }
535 keys %$lob_bind_indices
536 };
537 }
e12571af 538
539 # if we got that far - assume the where SQL is all we got
540 # (the first part is already shoved into $final_sql)
541 $sql = $where_sql;
5e782048 542 }
00819de0 543 elsif ($op ne 'select' and $op ne 'delete') {
5e782048 544 $self->throw_exception("Unsupported \$op: $op");
545 }
546
00819de0 547 my @sql_parts = split /\?/, $sql;
548
5e782048 549 my $col_equality_re = qr/ (?<=\s) ([\w."]+) (\s*=\s*) $/x;
550
551 for my $b_idx (0 .. $#$bind) {
552 my $bound = $bind->[$b_idx];
553
00819de0 554 if (
555 $lob_bind_indices->{$b_idx}
556 and
557 my ($col, $eq) = $sql_parts[0] =~ $col_equality_re
558 ) {
559 my $data = $bound->[1];
00a28188 560
00819de0 561 $data = "$data" if ref $data;
00a28188 562
00819de0 563 my @parts = unpack '(a2000)*', $data;
00a28188 564
00819de0 565 my @sql_frag;
00a28188 566
00819de0 567 for my $idx (0..$#parts) {
568 push @sql_frag, sprintf (
569 'UTL_RAW.CAST_TO_VARCHAR2(RAWTOHEX(DBMS_LOB.SUBSTR(%s, 2000, %d))) = ?',
570 $col, ($idx*2000 + 1),
571 );
572 }
00a28188 573
00819de0 574 my $sql_frag = '( ' . (join ' AND ', @sql_frag) . ' )';
00a28188 575
00819de0 576 $sql_parts[0] =~ s/$col_equality_re/$sql_frag/;
00a28188 577
00819de0 578 $final_sql .= shift @sql_parts;
00a28188 579
00819de0 580 for my $idx (0..$#parts) {
581 push @final_binds, [
00a28188 582 {
583 %{ $bound->[0] },
00819de0 584 _ora_lob_autosplit_part => $idx,
00a28188 585 dbd_attrs => undef,
586 },
00819de0 587 $parts[$idx]
00a28188 588 ];
589 }
590 }
591 else {
00819de0 592 $final_sql .= shift(@sql_parts) . '?';
593 push @final_binds, $lob_bind_indices->{$b_idx}
594 ? [
595 {
596 %{ $bound->[0] },
597 dbd_attrs => undef,
598 },
599 $bound->[1],
600 ] : $bound
601 ;
00a28188 602 }
603 }
5e782048 604
605 if (@sql_parts > 1) {
606 carp "There are more placeholders than binds, this should not happen!";
607 @sql_parts = join ('?', @sql_parts);
608 }
609
00819de0 610 $final_sql .= $sql_parts[0];
00a28188 611
00819de0 612 return ($final_sql, \@final_binds);
00a28188 613}
614
615# Savepoints stuff.
616
90d7422f 617sub _exec_svp_begin {
d7a58a29 618 my ($self, $name) = @_;
90d7422f 619 $self->_dbh->do("SAVEPOINT $name");
1816be4f 620}
621
281719d2 622# Oracle automatically releases a savepoint when you start another one with the
623# same name.
90d7422f 624sub _exec_svp_release { 1 }
281719d2 625
90d7422f 626sub _exec_svp_rollback {
d7a58a29 627 my ($self, $name) = @_;
90d7422f 628 $self->_dbh->do("ROLLBACK TO SAVEPOINT $name")
281719d2 629}
630
6c0230de 631=head2 relname_to_table_alias
632
633L<DBIx::Class> uses L<DBIx::Class::Relationship> names as table aliases in
634queries.
635
636Unfortunately, Oracle doesn't support identifiers over 30 chars in length, so
af0edca1 637the L<DBIx::Class::Relationship> name is shortened and appended with half of an
638MD5 hash.
6c0230de 639
5529838f 640See L<DBIx::Class::Storage::DBI/relname_to_table_alias>.
6c0230de 641
642=cut
643
644sub relname_to_table_alias {
645 my $self = shift;
646 my ($relname, $join_count) = @_;
647
648 my $alias = $self->next::method(@_);
649
19c4cc62 650 # we need to shorten here in addition to the shortening in SQLA itself,
d07f715d 651 # since the final relnames are crucial for the join optimizer
19c4cc62 652 return $self->sql_maker->_shorten_identifier($alias);
6c0230de 653}
654
6c0bb6a7 655=head2 with_deferred_fk_checks
656
657Runs a coderef between:
658
659 alter session set constraints = deferred
660 ...
661 alter session set constraints = immediate
662
b7b18f32 663to defer foreign key checks.
664
665Constraints must be declared C<DEFERRABLE> for this to work.
6c0bb6a7 666
667=cut
668
669sub with_deferred_fk_checks {
670 my ($self, $sub) = @_;
b7b18f32 671
672 my $txn_scope_guard = $self->txn_scope_guard;
673
6c0bb6a7 674 $self->_do_query('alter session set constraints = deferred');
54161a15 675
b7b18f32 676 my $sg = Scope::Guard->new(sub {
677 $self->_do_query('alter session set constraints = immediate');
678 });
281719d2 679
6298a324 680 return
681 preserve_context { $sub->() } after => sub { $txn_scope_guard->commit };
281719d2 682}
683
c0024355 684=head1 ATTRIBUTES
685
686Following additional attributes can be used in resultsets.
687
6b2fbbf0 688=head2 connect_by or connect_by_nocycle
c0024355 689
690=over 4
691
692=item Value: \%connect_by
693
694=back
695
696A hashref of conditions used to specify the relationship between parent rows
697and child rows of the hierarchy.
698
6b2fbbf0 699
c0024355 700 connect_by => { parentid => 'prior personid' }
701
702 # adds a connect by statement to the query:
703 # SELECT
704 # me.persionid me.firstname, me.lastname, me.parentid
705 # FROM
706 # person me
707 # CONNECT BY
708 # parentid = prior persionid
8273e845 709
c0024355 710
6b2fbbf0 711 connect_by_nocycle => { parentid => 'prior personid' }
2ba03b16 712
6b2fbbf0 713 # adds a connect by statement to the query:
714 # SELECT
715 # me.persionid me.firstname, me.lastname, me.parentid
716 # FROM
717 # person me
718 # CONNECT BY NOCYCLE
719 # parentid = prior persionid
2ba03b16 720
721
c0024355 722=head2 start_with
723
724=over 4
725
726=item Value: \%condition
727
728=back
729
730A hashref of conditions which specify the root row(s) of the hierarchy.
731
732It uses the same syntax as L<DBIx::Class::ResultSet/search>
733
734 start_with => { firstname => 'Foo', lastname => 'Bar' }
735
736 # SELECT
737 # me.persionid me.firstname, me.lastname, me.parentid
738 # FROM
739 # person me
740 # START WITH
741 # firstname = 'foo' and lastname = 'bar'
742 # CONNECT BY
743 # parentid = prior persionid
744
745=head2 order_siblings_by
746
747=over 4
748
749=item Value: ($order_siblings_by | \@order_siblings_by)
750
751=back
752
753Which column(s) to order the siblings by.
754
755It uses the same syntax as L<DBIx::Class::ResultSet/order_by>
756
757 'order_siblings_by' => 'firstname ASC'
758
759 # SELECT
760 # me.persionid me.firstname, me.lastname, me.parentid
761 # FROM
762 # person me
763 # CONNECT BY
764 # parentid = prior persionid
765 # ORDER SIBLINGS BY
766 # firstname ASC
767
a2bd3796 768=head1 FURTHER QUESTIONS?
18360aed 769
a2bd3796 770Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
18360aed 771
a2bd3796 772=head1 COPYRIGHT AND LICENSE
18360aed 773
a2bd3796 774This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
775by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
776redistribute it and/or modify it under the same terms as the
777L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
18360aed 778
779=cut
7137528d 780
7811;
00a28188 782# vim:sts=2 sw=2: