extract and/or expansion
[scpubgit/Q-Branch.git] / lib / SQL / Abstract.pm
CommitLineData
96449e8e 1package SQL::Abstract; # see doc at end of file
2
96449e8e 3use strict;
4use warnings;
9d9d5bd6 5use Carp ();
312d830b 6use List::Util ();
7use Scalar::Util ();
96449e8e 8
0da0fe34 9use Exporter 'import';
10our @EXPORT_OK = qw(is_plain_value is_literal_value);
11
12BEGIN {
13 if ($] < 5.009_005) {
14 require MRO::Compat;
15 }
16 else {
17 require mro;
18 }
843a94b5 19
20 *SQL::Abstract::_ENV_::DETECT_AUTOGENERATED_STRINGIFICATION = $ENV{SQLA_ISVALUE_IGNORE_AUTOGENERATED_STRINGIFICATION}
21 ? sub () { 0 }
22 : sub () { 1 }
23 ;
0da0fe34 24}
25
96449e8e 26#======================================================================
27# GLOBALS
28#======================================================================
29
dc6afcf8 30our $VERSION = '1.86';
7479e27e 31
22f1a437 32# This would confuse some packagers
c520207b 33$VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
96449e8e 34
35our $AUTOLOAD;
36
37# special operators (-in, -between). May be extended/overridden by user.
38# See section WHERE: BUILTIN SPECIAL OPERATORS below for implementation
39my @BUILTIN_SPECIAL_OPS = (
f663e672 40 {regex => qr/^ (?: not \s )? between $/ix, handler => sub { die "NOPE" }},
41 {regex => qr/^ (?: not \s )? in $/ix, handler => sub { die "NOPE" }},
87c8e45b 42 {regex => qr/^ is (?: \s+ not )? $/ix, handler => sub { die "NOPE" }},
96449e8e 43);
44
45#======================================================================
46# DEBUGGING AND ERROR REPORTING
47#======================================================================
48
49sub _debug {
50 return unless $_[0]->{debug}; shift; # a little faster
51 my $func = (caller(1))[3];
52 warn "[$func] ", @_, "\n";
53}
54
55sub belch (@) {
56 my($func) = (caller(1))[3];
9d9d5bd6 57 Carp::carp "[$func] Warning: ", @_;
96449e8e 58}
59
60sub puke (@) {
61 my($func) = (caller(1))[3];
9d9d5bd6 62 Carp::croak "[$func] Fatal: ", @_;
96449e8e 63}
64
0da0fe34 65sub is_literal_value ($) {
66 ref $_[0] eq 'SCALAR' ? [ ${$_[0]} ]
67 : ( ref $_[0] eq 'REF' and ref ${$_[0]} eq 'ARRAY' ) ? [ @${ $_[0] } ]
0da0fe34 68 : undef;
69}
70
71# FIXME XSify - this can be done so much more efficiently
72sub is_plain_value ($) {
73 no strict 'refs';
966200cc 74 ! length ref $_[0] ? \($_[0])
0da0fe34 75 : (
76 ref $_[0] eq 'HASH' and keys %{$_[0]} == 1
77 and
78 exists $_[0]->{-value}
966200cc 79 ) ? \($_[0]->{-value})
0da0fe34 80 : (
a1c9e0ff 81 # reuse @_ for even moar speedz
82 defined ( $_[1] = Scalar::Util::blessed $_[0] )
0da0fe34 83 and
84 # deliberately not using Devel::OverloadInfo - the checks we are
85 # intersted in are much more limited than the fullblown thing, and
86 # this is a very hot piece of code
87 (
e8d729d4 88 # simply using ->can('(""') can leave behind stub methods that
89 # break actually using the overload later (see L<perldiag/Stub
90 # found while resolving method "%s" overloading "%s" in package
91 # "%s"> and the source of overload::mycan())
44e54b41 92 #
0da0fe34 93 # either has stringification which DBI SHOULD prefer out of the box
a1c9e0ff 94 grep { *{ (qq[${_}::(""]) }{CODE} } @{ $_[2] = mro::get_linear_isa( $_[1] ) }
0da0fe34 95 or
20e178a8 96 # has nummification or boolification, AND fallback is *not* disabled
0da0fe34 97 (
843a94b5 98 SQL::Abstract::_ENV_::DETECT_AUTOGENERATED_STRINGIFICATION
99 and
20e178a8 100 (
101 grep { *{"${_}::(0+"}{CODE} } @{$_[2]}
102 or
103 grep { *{"${_}::(bool"}{CODE} } @{$_[2]}
104 )
0da0fe34 105 and
106 (
107 # no fallback specified at all
a1c9e0ff 108 ! ( ($_[3]) = grep { *{"${_}::()"}{CODE} } @{$_[2]} )
0da0fe34 109 or
110 # fallback explicitly undef
a1c9e0ff 111 ! defined ${"$_[3]::()"}
0da0fe34 112 or
113 # explicitly true
a1c9e0ff 114 !! ${"$_[3]::()"}
0da0fe34 115 )
116 )
117 )
966200cc 118 ) ? \($_[0])
0da0fe34 119 : undef;
120}
121
122
96449e8e 123
124#======================================================================
125# NEW
126#======================================================================
127
128sub new {
129 my $self = shift;
130 my $class = ref($self) || $self;
131 my %opt = (ref $_[0] eq 'HASH') ? %{$_[0]} : @_;
132
133 # choose our case by keeping an option around
134 delete $opt{case} if $opt{case} && $opt{case} ne 'lower';
135
136 # default logic for interpreting arrayrefs
ef559da3 137 $opt{logic} = $opt{logic} ? uc $opt{logic} : 'OR';
96449e8e 138
139 # how to return bind vars
96449e8e 140 $opt{bindtype} ||= 'normal';
141
142 # default comparison is "=", but can be overridden
143 $opt{cmp} ||= '=';
144
3af02ccb 145 # try to recognize which are the 'equality' and 'inequality' ops
3cdadcbe 146 # (temporary quickfix (in 2007), should go through a more seasoned API)
147 $opt{equality_op} = qr/^( \Q$opt{cmp}\E | \= )$/ix;
148 $opt{inequality_op} = qr/^( != | <> )$/ix;
149
150 $opt{like_op} = qr/^ (is\s+)? r?like $/xi;
151 $opt{not_like_op} = qr/^ (is\s+)? not \s+ r?like $/xi;
96449e8e 152
153 # SQL booleans
154 $opt{sqltrue} ||= '1=1';
155 $opt{sqlfalse} ||= '0=1';
156
9d48860e 157 # special operators
30af97c5 158 $opt{special_ops} ||= [];
159
b6251592 160 # regexes are applied in order, thus push after user-defines
96449e8e 161 push @{$opt{special_ops}}, @BUILTIN_SPECIAL_OPS;
162
cf06e9dc 163 if ($class->isa('DBIx::Class::SQLMaker')) {
dd1d0dbf 164 push @{$opt{special_ops}}, our $DBIC_Compat_Op ||= {
165 regex => qr/^(?:ident|value)$/i, handler => sub { die "NOPE" }
166 };
cf06e9dc 167 $opt{is_dbic_sqlmaker} = 1;
dd1d0dbf 168 }
169
9d48860e 170 # unary operators
59f23b3d 171 $opt{unary_ops} ||= [];
59f23b3d 172
3af02ccb 173 # rudimentary sanity-check for user supplied bits treated as functions/operators
b6251592 174 # If a purported function matches this regular expression, an exception is thrown.
175 # Literal SQL is *NOT* subject to this check, only functions (and column names
176 # when quoting is not in effect)
96449e8e 177
b6251592 178 # FIXME
179 # need to guard against ()'s in column names too, but this will break tons of
180 # hacks... ideas anyone?
181 $opt{injection_guard} ||= qr/
182 \;
183 |
184 ^ \s* go \s
185 /xmi;
96449e8e 186
21225d32 187 $opt{render} = {
188 (map +("-$_", "_render_$_"), qw(op func bind ident literal list)),
189 %{$opt{render}||{}}
b07681b1 190 };
191
ec19b759 192 $opt{expand_unary} = {};
193
767b62e4 194 $opt{expand} = {
d1aabfe4 195 -ident => '_expand_ident',
71f1364b 196 -value => '_expand_value',
2a238661 197 -not => '_expand_not',
05d37f9c 198 -bool => '_expand_bool',
70f98e4b 199 -and => '_expand_andor',
200 -or => '_expand_andor',
767b62e4 201 };
202
b6251592 203 return bless \%opt, $class;
204}
96449e8e 205
e175845b 206sub sqltrue { +{ -literal => [ $_[0]->{sqltrue} ] } }
207sub sqlfalse { +{ -literal => [ $_[0]->{sqlfalse} ] } }
170e6c33 208
209sub _assert_pass_injection_guard {
210 if ($_[1] =~ $_[0]->{injection_guard}) {
211 my $class = ref $_[0];
212 puke "Possible SQL injection attempt '$_[1]'. If this is indeed a part of the "
213 . "desired SQL use literal SQL ( \'...' or \[ '...' ] ) or supply your own "
214 . "{injection_guard} attribute to ${class}->new()"
215 }
216}
217
218
96449e8e 219#======================================================================
220# INSERT methods
221#======================================================================
222
223sub insert {
02288357 224 my $self = shift;
225 my $table = $self->_table(shift);
226 my $data = shift || return;
227 my $options = shift;
96449e8e 228
229 my $method = $self->_METHOD_FOR_refkind("_insert", $data);
02288357 230 my ($sql, @bind) = $self->$method($data);
96449e8e 231 $sql = join " ", $self->_sqlcase('insert into'), $table, $sql;
02288357 232
e82e648a 233 if ($options->{returning}) {
ca4f826a 234 my ($s, @b) = $self->_insert_returning($options);
e82e648a 235 $sql .= $s;
236 push @bind, @b;
02288357 237 }
238
96449e8e 239 return wantarray ? ($sql, @bind) : $sql;
240}
241
60f3fd3f 242# So that subclasses can override INSERT ... RETURNING separately from
243# UPDATE and DELETE (e.g. DBIx::Class::SQLMaker::Oracle does this)
b17a3ece 244sub _insert_returning { shift->_returning(@_) }
245
95904db5 246sub _returning {
e82e648a 247 my ($self, $options) = @_;
6b1fe79d 248
e82e648a 249 my $f = $options->{returning};
250
79d310f2 251 my ($sql, @bind) = $self->render_aqt(
ff96fdd4 252 $self->_expand_maybe_list_expr($f, undef, -ident)
253 );
254 return wantarray
255 ? $self->_sqlcase(' returning ') . $sql
256 : ($self->_sqlcase(' returning ').$sql, @bind);
6b1fe79d 257}
258
96449e8e 259sub _insert_HASHREF { # explicit list of fields and then values
260 my ($self, $data) = @_;
261
262 my @fields = sort keys %$data;
263
fe3ae272 264 my ($sql, @bind) = $self->_insert_values($data);
96449e8e 265
266 # assemble SQL
267 $_ = $self->_quote($_) foreach @fields;
268 $sql = "( ".join(", ", @fields).") ".$sql;
269
270 return ($sql, @bind);
271}
272
273sub _insert_ARRAYREF { # just generate values(?,?) part (no list of fields)
274 my ($self, $data) = @_;
275
276 # no names (arrayref) so can't generate bindtype
277 $self->{bindtype} ne 'columns'
278 or belch "can't do 'columns' bindtype when called with arrayref";
279
19b6ccce 280 my (@values, @all_bind);
281 foreach my $value (@$data) {
282 my ($values, @bind) = $self->_insert_value(undef, $value);
283 push @values, $values;
284 push @all_bind, @bind;
285 }
286 my $sql = $self->_sqlcase('values')." ( ".join(", ", @values)." )";
287 return ($sql, @all_bind);
fe3ae272 288}
289
290sub _insert_ARRAYREFREF { # literal SQL with bind
291 my ($self, $data) = @_;
292
293 my ($sql, @bind) = @${$data};
294 $self->_assert_bindval_matches_bindtype(@bind);
295
296 return ($sql, @bind);
297}
298
299
300sub _insert_SCALARREF { # literal SQL without bind
301 my ($self, $data) = @_;
302
303 return ($$data);
304}
305
306sub _insert_values {
307 my ($self, $data) = @_;
308
96449e8e 309 my (@values, @all_bind);
fe3ae272 310 foreach my $column (sort keys %$data) {
19b6ccce 311 my ($values, @bind) = $self->_insert_value($column, $data->{$column});
312 push @values, $values;
313 push @all_bind, @bind;
314 }
315 my $sql = $self->_sqlcase('values')." ( ".join(", ", @values)." )";
316 return ($sql, @all_bind);
317}
96449e8e 318
19b6ccce 319sub _insert_value {
320 my ($self, $column, $v) = @_;
96449e8e 321
79d310f2 322 return $self->render_aqt(
720ca4f7 323 $self->_expand_insert_value($column, $v)
324 );
325}
96449e8e 326
720ca4f7 327sub _expand_insert_value {
328 my ($self, $column, $v) = @_;
96449e8e 329
720ca4f7 330 if (ref($v) eq 'ARRAY') {
331 if ($self->{array_datatypes}) {
332 return +{ -bind => [ $column, $v ] };
333 }
334 my ($sql, @bind) = @$v;
335 $self->_assert_bindval_matches_bindtype(@bind);
336 return +{ -literal => $v };
337 }
338 if (ref($v) eq 'HASH') {
339 if (grep !/^-/, keys %$v) {
340 belch "HASH ref as bind value in insert is not supported";
341 return +{ -bind => [ $column, $v ] };
342 }
343 }
344 if (!defined($v)) {
345 return +{ -bind => [ $column, undef ] };
346 }
347 local our $Cur_Col_Meta = $column;
79d310f2 348 return $self->expand_expr($v);
96449e8e 349}
350
351
96449e8e 352
353#======================================================================
354# UPDATE methods
355#======================================================================
356
357
358sub update {
95904db5 359 my $self = shift;
360 my $table = $self->_table(shift);
361 my $data = shift || return;
362 my $where = shift;
363 my $options = shift;
96449e8e 364
365 # first build the 'SET' part of the sql statement
96449e8e 366 puke "Unsupported data type specified to \$sql->update"
367 unless ref $data eq 'HASH';
368
9ade906e 369 my ($sql, @all_bind) = $self->_update_set_values($data);
a9e94508 370 $sql = $self->_sqlcase('update ') . $table . $self->_sqlcase(' set ')
9ade906e 371 . $sql;
372
373 if ($where) {
374 my($where_sql, @where_bind) = $self->where($where);
375 $sql .= $where_sql;
376 push @all_bind, @where_bind;
377 }
378
379 if ($options->{returning}) {
380 my ($returning_sql, @returning_bind) = $self->_update_returning($options);
381 $sql .= $returning_sql;
382 push @all_bind, @returning_bind;
383 }
384
385 return wantarray ? ($sql, @all_bind) : $sql;
386}
387
388sub _update_set_values {
389 my ($self, $data) = @_;
390
79d310f2 391 return $self->render_aqt(
89690da2 392 $self->_expand_update_set_values($data),
393 );
394}
96449e8e 395
89690da2 396sub _expand_update_set_values {
397 my ($self, $data) = @_;
398 $self->_expand_maybe_list_expr( [
399 map {
400 my ($k, $set) = @$_;
c4ed66f4 401 $set = { -bind => $_ } unless defined $set;
9103bd14 402 +{ -op => [ '=', $self->_expand_ident(-ident => $k), $set ] };
89690da2 403 }
404 map {
405 my $k = $_;
406 my $v = $data->{$k};
407 (ref($v) eq 'ARRAY'
408 ? ($self->{array_datatypes}
409 ? [ $k, +{ -bind => [ $k, $v ] } ]
410 : [ $k, +{ -literal => $v } ])
411 : do {
412 local our $Cur_Col_Meta = $k;
413 [ $k, $self->_expand_expr($v) ]
414 }
415 );
416 } sort keys %$data
417 ] );
96449e8e 418}
419
60f3fd3f 420# So that subclasses can override UPDATE ... RETURNING separately from
421# INSERT and DELETE
20bb2ad5 422sub _update_returning { shift->_returning(@_) }
96449e8e 423
424
425
426#======================================================================
427# SELECT
428#======================================================================
429
430
431sub select {
432 my $self = shift;
433 my $table = $self->_table(shift);
434 my $fields = shift || '*';
435 my $where = shift;
436 my $order = shift;
437
daa4ccdd 438 my ($fields_sql, @bind) = $self->_select_fields($fields);
96449e8e 439
daa4ccdd 440 my ($where_sql, @where_bind) = $self->where($where, $order);
441 push @bind, @where_bind;
442
443 my $sql = join(' ', $self->_sqlcase('select'), $fields_sql,
96449e8e 444 $self->_sqlcase('from'), $table)
445 . $where_sql;
446
9d48860e 447 return wantarray ? ($sql, @bind) : $sql;
96449e8e 448}
449
daa4ccdd 450sub _select_fields {
451 my ($self, $fields) = @_;
de63ce57 452 return $fields unless ref($fields);
79d310f2 453 return $self->render_aqt(
27592e2b 454 $self->_expand_maybe_list_expr($fields, undef, '-ident')
455 );
daa4ccdd 456}
457
96449e8e 458#======================================================================
459# DELETE
460#======================================================================
461
462
463sub delete {
85327cd5 464 my $self = shift;
465 my $table = $self->_table(shift);
466 my $where = shift;
467 my $options = shift;
96449e8e 468
469 my($where_sql, @bind) = $self->where($where);
a9e94508 470 my $sql = $self->_sqlcase('delete from ') . $table . $where_sql;
96449e8e 471
85327cd5 472 if ($options->{returning}) {
ca4f826a 473 my ($returning_sql, @returning_bind) = $self->_delete_returning($options);
85327cd5 474 $sql .= $returning_sql;
475 push @bind, @returning_bind;
476 }
477
9d48860e 478 return wantarray ? ($sql, @bind) : $sql;
96449e8e 479}
480
60f3fd3f 481# So that subclasses can override DELETE ... RETURNING separately from
482# INSERT and UPDATE
85327cd5 483sub _delete_returning { shift->_returning(@_) }
484
485
96449e8e 486
487#======================================================================
488# WHERE: entry point
489#======================================================================
490
491
492
493# Finally, a separate routine just to handle WHERE clauses
494sub where {
495 my ($self, $where, $order) = @_;
496
7ad12721 497 local $self->{convert_where} = $self->{convert};
498
96449e8e 499 # where ?
e175845b 500 my ($sql, @bind) = defined($where)
501 ? $self->_recurse_where($where)
502 : (undef);
417dd15e 503 $sql = (defined $sql and length $sql) ? $self->_sqlcase(' where ') . "( $sql )" : '';
96449e8e 504
505 # order by?
506 if ($order) {
26fe4d30 507 my ($order_sql, @order_bind) = $self->_order_by($order);
508 $sql .= $order_sql;
509 push @bind, @order_bind;
96449e8e 510 }
511
9d48860e 512 return wantarray ? ($sql, @bind) : $sql;
96449e8e 513}
514
79d310f2 515sub expand_expr {
54d3140f 516 my ($self, $expr, $default_scalar_to) = @_;
517 local our $Default_Scalar_To = $default_scalar_to if $default_scalar_to;
7d93797d 518 $self->_expand_expr($expr);
79d310f2 519}
520
521sub render_aqt {
522 my ($self, $aqt) = @_;
523 my ($k, $v, @rest) = %$aqt;
524 die "No" if @rest;
21225d32 525 if (my $meth = $self->{render}{$k}) {
79d310f2 526 return $self->$meth($v);
527 }
528 die "notreached: $k";
529}
530
6082a464 531sub render_expr {
532 my ($self, $expr) = @_;
533 $self->render_aqt($self->expand_expr($expr));
534}
535
a2cd381d 536sub _expand_expr {
c7aeb9f5 537 my ($self, $expr, $logic) = @_;
3ae10d16 538 our $Expand_Depth ||= 0; local $Expand_Depth = $Expand_Depth + 1;
252518da 539 return undef unless defined($expr);
59588695 540 if (ref($expr) eq 'HASH') {
767b62e4 541 return undef unless my $kc = keys %$expr;
542 if ($kc > 1) {
59588695 543 $logic ||= 'and';
70f98e4b 544 return $self->_expand_andor("-${logic}", $expr);
59588695 545 }
767b62e4 546 my ($key, $value) = %$expr;
70f98e4b 547 if ($key =~ /^-/ and $key =~ s/ [_\s]? \d+ $//x ) {
548 belch 'Use of [and|or|nest]_N modifiers is deprecated and will be removed in SQLA v2.0. '
549 . "You probably wanted ...-and => [ $key => COND1, $key => COND2 ... ]";
550 }
767b62e4 551 if (my $exp = $self->{expand}{$key}) {
d1aabfe4 552 return $self->$exp($key, $value);
767b62e4 553 }
554 return $self->_expand_expr_hashpair($key, $value, $logic);
a2cd381d 555 }
08264f40 556 if (ref($expr) eq 'ARRAY') {
99a65fa8 557 my $logic = lc($logic || $self->{logic});
70f98e4b 558 return $self->_expand_andor("-${logic}", $expr);
08264f40 559 }
ca3da680 560 if (my $literal = is_literal_value($expr)) {
561 return +{ -literal => $literal };
562 }
99a65fa8 563 if (!ref($expr) or Scalar::Util::blessed($expr)) {
c7aeb9f5 564 if (my $d = our $Default_Scalar_To) {
a332e2cb 565 return $self->_expand_expr({ $d => $expr });
2558b622 566 }
99a65fa8 567 if (my $m = our $Cur_Col_Meta) {
568 return +{ -bind => [ $m, $expr ] };
569 }
a332e2cb 570 return +{ -bind => [ undef, $expr ] };
252518da 571 }
252518da 572 die "notreached";
a2cd381d 573}
96449e8e 574
59588695 575sub _expand_expr_hashpair {
576 my ($self, $k, $v, $logic) = @_;
d13725da 577 unless (defined($k) and length($k)) {
2d64004f 578 if (defined($k) and my $literal = is_literal_value($v)) {
d13725da 579 belch 'Hash-pairs consisting of an empty string with a literal are deprecated, and will be removed in 2.0: use -and => [ $literal ] instead';
2d64004f 580 return { -literal => $literal };
d13725da 581 }
582 puke "Supplying an empty left hand side argument is not supported";
583 }
ef071fad 584 if ($k =~ /^-/) {
99a65fa8 585 $self->_assert_pass_injection_guard($k =~ /^-(.*)$/s);
ef071fad 586 if ($k eq '-nest') {
0fc68377 587 # DBIx::Class requires a nest warning to be emitted once but the private
588 # method it overrode to do so no longer exists
cf06e9dc 589 if ($self->{is_dbic_sqlmaker}) {
590 unless (our $Nest_Warned) {
0fc68377 591 belch(
592 "-nest in search conditions is deprecated, you most probably wanted:\n"
593 .q|{..., -and => [ \%cond0, \@cond1, \'cond2', \[ 'cond3', [ col => bind ] ], etc. ], ... }|
594 );
595 $Nest_Warned = 1;
596 }
597 }
ef071fad 598 return $self->_expand_expr($v);
599 }
ce3bc4b0 600 if (my ($rest) = $k =~/^-not[_ ](.*)$/) {
0c7e3af0 601 return +{ -op => [
602 'not',
767b62e4 603 $self->_expand_expr({ "-${rest}", $v }, $logic)
0c7e3af0 604 ] };
ce3bc4b0 605 }
99a65fa8 606 {
607 my $op = $k;
608 $op =~ s/^-// if length($op) > 1;
ddc44894 609
99a65fa8 610 # top level special ops are illegal in general
3ae10d16 611 # note that, arguably, if it makes no sense at top level, it also
612 # makes no sense on the other side of an = sign or similar but DBIC
613 # gets disappointingly upset if I disallow it
614 if (
615 (our $Expand_Depth) == 1
616 and List::Util::first { $op =~ $_->{regex} } @{$self->{special_ops}}
617 ) {
618 puke "Illegal use of top-level '-$op'"
619 }
96a8d74a 620 if (my $us = List::Util::first { $op =~ $_->{regex} } @{$self->{unary_ops}}) {
621 return { -op => [ $op, $v ] };
622 }
99a65fa8 623 }
21225d32 624 if ($self->{render}{$k}) {
99a65fa8 625 return { $k => $v };
d13725da 626 }
711892b1 627 if (
628 ref($v) eq 'HASH'
629 and keys %$v == 1
630 and (keys %$v)[0] =~ /^-/
631 ) {
632 my ($func) = $k =~ /^-(.*)$/;
3ae10d16 633 if (List::Util::first { $func =~ $_->{regex} } @{$self->{special_ops}}) {
634 return +{ -op => [ $func, $self->_expand_expr($v) ] };
635 }
711892b1 636 return +{ -func => [ $func, $self->_expand_expr($v) ] };
637 }
638 if (!ref($v) or is_literal_value($v)) {
99a65fa8 639 return +{ -op => [ $k =~ /^-(.*)$/, $self->_expand_expr($v) ] };
59588695 640 }
99a65fa8 641 }
642 if (
643 !defined($v)
644 or (
645 ref($v) eq 'HASH'
646 and exists $v->{-value}
647 and not defined $v->{-value}
648 )
649 ) {
213209dd 650 return $self->_expand_expr({ $k => { $self->{cmp} => undef } });
99a65fa8 651 }
652 if (!ref($v) or Scalar::Util::blessed($v)) {
ec19b759 653 my $d = our $Default_Scalar_To;
99a65fa8 654 return +{
655 -op => [
656 $self->{cmp},
944f2c7b 657 $self->_expand_ident(-ident => $k),
7d93797d 658 ($d
659 ? $self->_expand_expr($d => $v)
660 : { -bind => [ $k, $v ] }
661 )
99a65fa8 662 ]
663 };
664 }
665 if (ref($v) eq 'HASH') {
666 if (keys %$v > 1) {
e175845b 667 return { -op => [
668 'and',
5e75aa04 669 map $self->_expand_expr({ $k => { $_ => $v->{$_} } }),
99a65fa8 670 sort keys %$v
671 ] };
672 }
b18a95e4 673 return undef unless keys %$v;
99a65fa8 674 my ($vk, $vv) = %$v;
d455dcf1 675 my $op = join ' ', split '_', (map lc, $vk =~ /^-?(.*)$/)[0];
676 $self->_assert_pass_injection_guard($op);
677 if ($op =~ s/ [_\s]? \d+ $//x ) {
99a65fa8 678 belch 'Use of [and|or|nest]_N modifiers is deprecated and will be removed in SQLA v2.0. '
d455dcf1 679 . "You probably wanted ...-and => [ -$op => COND1, -$op => COND2 ... ]";
99a65fa8 680 }
d455dcf1 681 if ($op =~ /^(?:not )?between$/) {
99a65fa8 682 local our $Cur_Col_Meta = $k;
683 my @rhs = map $self->_expand_expr($_),
684 ref($vv) eq 'ARRAY' ? @$vv : $vv;
685 unless (
686 (@rhs == 1 and ref($rhs[0]) eq 'HASH' and $rhs[0]->{-literal})
687 or
688 (@rhs == 2 and defined($rhs[0]) and defined($rhs[1]))
689 ) {
d455dcf1 690 puke "Operator '${\uc($op)}' requires either an arrayref with two defined values or expressions, or a single literal scalarref/arrayref-ref";
b5b18861 691 }
99a65fa8 692 return +{ -op => [
d455dcf1 693 $op,
944f2c7b 694 $self->_expand_ident(-ident => $k),
99a65fa8 695 @rhs
696 ] }
697 }
d455dcf1 698 if ($op =~ /^(?:not )?in$/) {
99a65fa8 699 if (my $literal = is_literal_value($vv)) {
700 my ($sql, @bind) = @$literal;
701 my $opened_sql = $self->_open_outer_paren($sql);
10d07c4e 702 return +{ -op => [
d455dcf1 703 $op, $self->_expand_ident(-ident => $k),
99a65fa8 704 [ { -literal => [ $opened_sql, @bind ] } ]
10d07c4e 705 ] };
706 }
99a65fa8 707 my $undef_err =
708 'SQL::Abstract before v1.75 used to generate incorrect SQL when the '
d455dcf1 709 . "-${\uc($op)} operator was given an undef-containing list: !!!AUDIT YOUR CODE "
99a65fa8 710 . 'AND DATA!!! (the upcoming Data::Query-based version of SQL::Abstract '
711 . 'will emit the logically correct SQL instead of raising this exception)'
712 ;
d455dcf1 713 puke("Argument passed to the '${\uc($op)}' operator can not be undefined")
99a65fa8 714 if !defined($vv);
715 my @rhs = map $self->_expand_expr($_),
716 map { ref($_) ? $_ : { -bind => [ $k, $_ ] } }
717 map { defined($_) ? $_: puke($undef_err) }
718 (ref($vv) eq 'ARRAY' ? @$vv : $vv);
d455dcf1 719 return $self->${\($op =~ /^not/ ? 'sqltrue' : 'sqlfalse')} unless @rhs;
99a65fa8 720
721 return +{ -op => [
d455dcf1 722 $op,
944f2c7b 723 $self->_expand_ident(-ident => $k),
99a65fa8 724 \@rhs
725 ] };
726 }
d455dcf1 727 if ($op eq 'ident') {
02b8fe35 728 if (! defined $vv or (ref($vv) and ref($vv) eq 'ARRAY')) {
d455dcf1 729 puke "-$op requires a single plain scalar argument (a quotable identifier) or an arrayref of identifier parts";
f7778474 730 }
99a65fa8 731 return +{ -op => [
732 $self->{cmp},
de8d04fb 733 $self->_expand_ident(-ident => $k),
734 $self->_expand_ident(-ident => $vv),
99a65fa8 735 ] };
736 }
d455dcf1 737 if ($op eq 'value') {
7b3a5558 738 return $self->_expand_expr({ $k, undef }) unless defined($vv);
99a65fa8 739 return +{ -op => [
740 $self->{cmp},
de8d04fb 741 $self->_expand_ident(-ident => $k),
99a65fa8 742 { -bind => [ $k, $vv ] }
743 ] };
744 }
d455dcf1 745 if ($op =~ /^is(?: not)?$/) {
746 puke "$op can only take undef as argument"
99a65fa8 747 if defined($vv)
748 and not (
749 ref($vv) eq 'HASH'
750 and exists($vv->{-value})
751 and !defined($vv->{-value})
752 );
d455dcf1 753 return +{ -op => [ $op.' null', $self->_expand_ident(-ident => $k) ] };
99a65fa8 754 }
d455dcf1 755 if ($op =~ /^(and|or)$/) {
99a65fa8 756 if (ref($vv) eq 'HASH') {
e62fe58a 757 return +{ -op => [
d455dcf1 758 $op,
ff1b554a 759 map $self->_expand_expr({ $k, { $_ => $vv->{$_} } }),
99a65fa8 760 sort keys %$vv
7d7868d1 761 ] };
762 }
e28d9b13 763 }
d455dcf1 764 if (my $us = List::Util::first { $op =~ $_->{regex} } @{$self->{special_ops}}) {
765 return { -op => [ $op, $self->_expand_ident(-ident => $k), $vv ] };
7dbe1183 766 }
d455dcf1 767 if (my $us = List::Util::first { $op =~ $_->{regex} } @{$self->{unary_ops}}) {
96a8d74a 768 return { -op => [
769 $self->{cmp},
de8d04fb 770 $self->_expand_ident(-ident => $k),
d455dcf1 771 { -op => [ $op, $vv ] }
96a8d74a 772 ] };
773 }
99a65fa8 774 if (ref($vv) eq 'ARRAY') {
775 my ($logic, @values) = (
776 (defined($vv->[0]) and $vv->[0] =~ /^-(and|or)$/i)
777 ? @$vv
778 : (-or => @$vv)
779 );
780 if (
d455dcf1 781 $op =~ $self->{inequality_op}
782 or $op =~ $self->{not_like_op}
99a65fa8 783 ) {
784 if (lc($logic) eq '-or' and @values > 1) {
d455dcf1 785 belch "A multi-element arrayref as an argument to the inequality op '${\uc($op)}' "
99a65fa8 786 . 'is technically equivalent to an always-true 1=1 (you probably wanted '
787 . "to say ...{ \$inequality_op => [ -and => \@values ] }... instead)"
788 ;
789 }
ef071fad 790 }
b3cb13e8 791 unless (@values) {
792 # try to DWIM on equality operators
b3cb13e8 793 return
e175845b 794 $op =~ $self->{equality_op} ? $self->sqlfalse
795 : $op =~ $self->{like_op} ? belch("Supplying an empty arrayref to '@{[ uc $op]}' is deprecated") && $self->sqlfalse
796 : $op =~ $self->{inequality_op} ? $self->sqltrue
797 : $op =~ $self->{not_like_op} ? belch("Supplying an empty arrayref to '@{[ uc $op]}' is deprecated") && $self->sqltrue
b3cb13e8 798 : puke "operator '$op' applied on an empty array (field '$k')";
799 }
63c97a0b 800 return +{ -op => [
801 $logic =~ /^-(.*)$/,
85acf9c4 802 map $self->_expand_expr({ $k => { $vk => $_ } }),
99a65fa8 803 @values
804 ] };
805 }
806 if (
807 !defined($vv)
808 or (
809 ref($vv) eq 'HASH'
810 and exists $vv->{-value}
811 and not defined $vv->{-value}
812 )
813 ) {
99a65fa8 814 my $is =
815 $op =~ /^not$/i ? 'is not' # legacy
816 : $op =~ $self->{equality_op} ? 'is'
817 : $op =~ $self->{like_op} ? belch("Supplying an undefined argument to '@{[ uc $op]}' is deprecated") && 'is'
818 : $op =~ $self->{inequality_op} ? 'is not'
819 : $op =~ $self->{not_like_op} ? belch("Supplying an undefined argument to '@{[ uc $op]}' is deprecated") && 'is not'
820 : puke "unexpected operator '$op' with undef operand";
de8d04fb 821 return +{ -op => [ $is.' null', $self->_expand_ident(-ident => $k) ] };
99a65fa8 822 }
823 local our $Cur_Col_Meta = $k;
824 return +{ -op => [
d455dcf1 825 $op,
826 $self->_expand_ident(-ident => $k),
827 $self->_expand_expr($vv)
99a65fa8 828 ] };
829 }
830 if (ref($v) eq 'ARRAY') {
e175845b 831 return $self->sqlfalse unless @$v;
99a65fa8 832 $self->_debug("ARRAY($k) means distribute over elements");
70f98e4b 833 my $this_logic = lc(
834 $v->[0] =~ /^-(and|or)$/i
835 ? shift(@{$v = [ @$v ]})
836 : '-'.($self->{logic} || 'or')
99a65fa8 837 );
70f98e4b 838 return $self->_expand_expr({
839 $this_logic => [ map +{ $k => $_ }, @$v ]
840 });
99a65fa8 841 }
842 if (my $literal = is_literal_value($v)) {
843 unless (length $k) {
844 belch 'Hash-pairs consisting of an empty string with a literal are deprecated, and will be removed in 2.0: use -and => [ $literal ] instead';
845 return \$literal;
846 }
847 my ($sql, @bind) = @$literal;
848 if ($self->{bindtype} eq 'columns') {
849 for (@bind) {
6fb2bd90 850 $self->_assert_bindval_matches_bindtype($_);
aa8d7bdb 851 }
331e2209 852 }
99a65fa8 853 return +{ -literal => [ $self->_quote($k).' '.$sql, @bind ] };
331e2209 854 }
99a65fa8 855 die "notreached";
59588695 856}
857
9103bd14 858sub _expand_ident {
859 my ($self, undef, $body) = @_;
860 my @parts = map split(/\Q${\($self->{name_sep}||'.')}\E/, $_),
861 ref($body) ? @$body : $body;
944f2c7b 862 return { -ident => $parts[-1] } if $self->{_dequalify_idents};
863 unless ($self->{quote_char}) {
864 $self->_assert_pass_injection_guard($_) for @parts;
865 }
9103bd14 866 return +{ -ident => \@parts };
867}
868
71f1364b 869sub _expand_value {
870 +{ -bind => [ our $Cur_Col_Meta, $_[2] ] };
871}
872
2a238661 873sub _expand_not {
874 +{ -op => [ 'not', $_[0]->_expand_expr($_[2]) ] };
875}
876
05d37f9c 877sub _expand_bool {
878 my ($self, undef, $v) = @_;
879 if (ref($v)) {
880 return $self->_expand_expr($v);
881 }
882 puke "-bool => undef not supported" unless defined($v);
883 return $self->_expand_ident(-ident => $v);
884}
885
70f98e4b 886sub _expand_andor {
887 my ($self, $k, $v) = @_;
888 my ($logic) = $k =~ /^-(.*)$/;
889 if (ref($v) eq 'HASH') {
890 return +{ -op => [
891 $logic,
892 map $self->_expand_expr({ $_ => $v->{$_} }, $logic),
893 sort keys %$v
894 ] };
895 }
896 if (ref($v) eq 'ARRAY') {
897 $logic eq 'and' or $logic eq 'or' or puke "unknown logic: $logic";
898
899 my @expr = grep {
900 (ref($_) eq 'ARRAY' and @$_)
901 or (ref($_) eq 'HASH' and %$_)
902 or 1
903 } @$v;
904
905 my @res;
906
907 while (my ($el) = splice @expr, 0, 1) {
908 puke "Supplying an empty left hand side argument is not supported in array-pairs"
909 unless defined($el) and length($el);
910 my $elref = ref($el);
911 if (!$elref) {
912 local our $Expand_Depth = 0;
913 push(@res, grep defined, $self->_expand_expr({ $el, shift(@expr) }));
914 } elsif ($elref eq 'ARRAY') {
915 push(@res, grep defined, $self->_expand_expr($el)) if @$el;
916 } elsif (my $l = is_literal_value($el)) {
917 push @res, { -literal => $l };
918 } elsif ($elref eq 'HASH') {
919 local our $Expand_Depth = 0;
920 push @res, grep defined, $self->_expand_expr($el) if %$el;
921 } else {
922 die "notreached";
923 }
924 }
925 # ???
926 # return $res[0] if @res == 1;
927 return { -op => [ $logic, @res ] };
928 }
929 die "notreached";
930}
931
96449e8e 932sub _recurse_where {
933 my ($self, $where, $logic) = @_;
934
5492d4c2 935 # Special case: top level simple string treated as literal
936
937 my $where_exp = (ref($where)
ae56a156 938 ? $self->_expand_expr($where, $logic)
5492d4c2 939 : { -literal => [ $where ] });
e175845b 940
e3e27543 941 # dispatch expanded expression
311b2151 942
79d310f2 943 my ($sql, @bind) = defined($where_exp) ? $self->render_aqt($where_exp) : (undef);
abe1a491 944 # DBIx::Class used to call _recurse_where in scalar context
945 # something else might too...
946 if (wantarray) {
947 return ($sql, @bind);
948 }
949 else {
950 belch "Calling _recurse_where in scalar context is deprecated and will go away before 2.0";
951 return $sql;
952 }
96449e8e 953}
954
181dcebf 955sub _render_ident {
956 my ($self, $ident) = @_;
cc422895 957
9cf28dfb 958 return $self->_convert($self->_quote($ident));
cc422895 959}
960
c452734e 961my %unop_postfix = map +($_ => 1),
962 'is null', 'is not null',
963 'asc', 'desc',
964;
d13725da 965
b5b18861 966my %special = (
967 (map +($_ => do {
968 my $op = $_;
969 sub {
970 my ($self, $args) = @_;
971 my ($left, $low, $high) = @$args;
972 my ($rhsql, @rhbind) = do {
973 if (@$args == 2) {
974 puke "Single arg to between must be a literal"
975 unless $low->{-literal};
976 @{$low->{-literal}}
977 } else {
79d310f2 978 my ($l, $h) = map [ $self->render_aqt($_) ], $low, $high;
b5b18861 979 (join(' ', $l->[0], $self->_sqlcase('and'), $h->[0]),
980 @{$l}[1..$#$l], @{$h}[1..$#$h])
981 }
982 };
79d310f2 983 my ($lhsql, @lhbind) = $self->render_aqt($left);
b5b18861 984 return (
985 join(' ', '(', $lhsql, $self->_sqlcase($op), $rhsql, ')'),
986 @lhbind, @rhbind
987 );
988 }
989 }), 'between', 'not between'),
10d07c4e 990 (map +($_ => do {
991 my $op = $_;
992 sub {
993 my ($self, $args) = @_;
994 my ($lhs, $rhs) = @$args;
995 my @in_bind;
996 my @in_sql = map {
79d310f2 997 my ($sql, @bind) = $self->render_aqt($_);
10d07c4e 998 push @in_bind, @bind;
999 $sql;
1000 } @$rhs;
79d310f2 1001 my ($lhsql, @lbind) = $self->render_aqt($lhs);
10d07c4e 1002 return (
1003 $lhsql.' '.$self->_sqlcase($op).' ( '
1004 .join(', ', @in_sql)
1005 .' )',
1006 @lbind, @in_bind
1007 );
1008 }
1009 }), 'in', 'not in'),
b5b18861 1010);
1011
181dcebf 1012sub _render_op {
1013 my ($self, $v) = @_;
d13725da 1014 my ($op, @args) = @$v;
1015 $op =~ s/^-// if length($op) > 1;
cba28f66 1016 $op = lc($op);
b5b18861 1017 if (my $h = $special{$op}) {
1018 return $self->$h(\@args);
1019 }
3ae10d16 1020 my $us = List::Util::first { $op =~ $_->{regex} } @{$self->{special_ops}};
1021 if ($us and @args > 1) {
99a65fa8 1022 puke "Special op '${op}' requires first value to be identifier"
7d93797d 1023 unless my ($ident) = map $_->{-ident}, grep ref($_) eq 'HASH', $args[0];
1024 my $k = join(($self->{name_sep}||'.'), @$ident);
dd1d0dbf 1025 local our $Expand_Depth = 1;
99a65fa8 1026 return $self->${\($us->{handler})}($k, $op, $args[1]);
1027 }
96a8d74a 1028 if (my $us = List::Util::first { $op =~ $_->{regex} } @{$self->{unary_ops}}) {
1029 return $self->${\($us->{handler})}($op, $args[0]);
1030 }
99a65fa8 1031 my $final_op = $op =~ /^(?:is|not)_/ ? join(' ', split '_', $op) : $op;
2143604f 1032 if (@args == 1 and $op !~ /^(and|or)$/) {
79d310f2 1033 my ($expr_sql, @bind) = $self->render_aqt($args[0]);
d13725da 1034 my $op_sql = $self->_sqlcase($final_op);
1035 my $final_sql = (
1036 $unop_postfix{lc($final_op)}
1037 ? "${expr_sql} ${op_sql}"
1038 : "${op_sql} ${expr_sql}"
1039 );
3ae10d16 1040 return (($op eq 'not' || $us ? '('.$final_sql.')' : $final_sql), @bind);
16d9289c 1041 } else {
79d310f2 1042 my @parts = grep length($_->[0]), map [ $self->render_aqt($_) ], @args;
1c0c0f41 1043 return '' unless @parts;
230812fc 1044 my $is_andor = !!($op =~ /^(and|or)$/);
1045 return @{$parts[0]} if $is_andor and @parts == 1;
1046 my ($final_sql) = map +($is_andor ? "( ${_} )" : $_), join(
352d74bc 1047 ' '.$self->_sqlcase($final_op).' ',
77617257 1048 map $_->[0], @parts
1049 );
99a65fa8 1050 return (
77617257 1051 $final_sql,
16d9289c 1052 map @{$_}[1..$#$_], @parts
99a65fa8 1053 );
d13725da 1054 }
1055 die "unhandled";
1056}
1057
352d74bc 1058sub _render_list {
1059 my ($self, $list) = @_;
79d310f2 1060 my @parts = grep length($_->[0]), map [ $self->render_aqt($_) ], @$list;
352d74bc 1061 return join(', ', map $_->[0], @parts), map @{$_}[1..$#$_], @parts;
1062}
1063
181dcebf 1064sub _render_func {
1065 my ($self, $rest) = @_;
711892b1 1066 my ($func, @args) = @$rest;
1067 my @arg_sql;
1068 my @bind = map {
1069 my @x = @$_;
1070 push @arg_sql, shift @x;
1071 @x
79d310f2 1072 } map [ $self->render_aqt($_) ], @args;
711892b1 1073 return ($self->_sqlcase($func).'('.join(', ', @arg_sql).')', @bind);
1074}
1075
181dcebf 1076sub _render_bind {
1077 my ($self, $bind) = @_;
d13725da 1078 return ($self->_convert('?'), $self->_bindtype(@$bind));
1079}
1080
181dcebf 1081sub _render_literal {
1082 my ($self, $literal) = @_;
465d43fd 1083 $self->_assert_bindval_matches_bindtype(@{$literal}[1..$#$literal]);
aa8d7bdb 1084 return @$literal;
1085}
1086
4a1f01a3 1087# Some databases (SQLite) treat col IN (1, 2) different from
1088# col IN ( (1, 2) ). Use this to strip all outer parens while
1089# adding them back in the corresponding method
1090sub _open_outer_paren {
1091 my ($self, $sql) = @_;
a5f91feb 1092
ca4f826a 1093 while (my ($inner) = $sql =~ /^ \s* \( (.*) \) \s* $/xs) {
a5f91feb 1094
1095 # there are closing parens inside, need the heavy duty machinery
1096 # to reevaluate the extraction starting from $sql (full reevaluation)
ca4f826a 1097 if ($inner =~ /\)/) {
a5f91feb 1098 require Text::Balanced;
1099
1100 my (undef, $remainder) = do {
1101 # idiotic design - writes to $@ but *DOES NOT* throw exceptions
1102 local $@;
ca4f826a 1103 Text::Balanced::extract_bracketed($sql, '()', qr/\s*/);
a5f91feb 1104 };
1105
1106 # the entire expression needs to be a balanced bracketed thing
1107 # (after an extract no remainder sans trailing space)
1108 last if defined $remainder and $remainder =~ /\S/;
1109 }
1110
1111 $sql = $inner;
1112 }
1113
1114 $sql;
4a1f01a3 1115}
1116
96449e8e 1117
96449e8e 1118#======================================================================
1119# ORDER BY
1120#======================================================================
1121
33177570 1122sub _expand_order_by {
96449e8e 1123 my ($self, $arg) = @_;
1124
33177570 1125 return unless defined($arg) and not (ref($arg) eq 'ARRAY' and !@$arg);
2b6158af 1126
4325df6a 1127 my $expander = sub {
1128 my ($self, $dir, $expr) = @_;
52ca537e 1129 my @to_expand = ref($expr) eq 'ARRAY' ? @$expr : $expr;
1130 foreach my $arg (@to_expand) {
1131 if (
1132 ref($arg) eq 'HASH'
1133 and keys %$arg > 1
1134 and grep /^-(asc|desc)$/, keys %$arg
1135 ) {
1136 puke "ordering direction hash passed to order by must have exactly one key (-asc or -desc)";
1137 }
1138 }
7384c311 1139 my @exp = map +(
1140 defined($dir) ? { -op => [ $dir =~ /^-?(.*)$/ ,=> $_ ] } : $_
1141 ),
79d310f2 1142 map $self->expand_expr($_, -ident),
74156ee9 1143 map ref($_) eq 'ARRAY' ? @$_ : $_, @to_expand;
352d74bc 1144 return (@exp > 1 ? { -list => \@exp } : $exp[0]);
4325df6a 1145 };
18c743c8 1146
7384c311 1147 local @{$self->{expand}}{qw(-asc -desc)} = (($expander) x 2);
f267b646 1148
33177570 1149 return $self->$expander(undef, $arg);
1150}
1151
1152sub _order_by {
1153 my ($self, $arg) = @_;
1154
1155 return '' unless defined(my $expanded = $self->_expand_order_by($arg));
4325df6a 1156
79d310f2 1157 my ($sql, @bind) = $self->render_aqt($expanded);
4325df6a 1158
13cd9220 1159 return '' unless length($sql);
1160
4325df6a 1161 my $final_sql = $self->_sqlcase(' order by ').$sql;
1162
1163 return wantarray ? ($final_sql, @bind) : $final_sql;
f267b646 1164}
1165
2e3cc357 1166# _order_by no longer needs to call this so doesn't but DBIC uses it.
1167
33177570 1168sub _order_by_chunks {
1169 my ($self, $arg) = @_;
1170
1171 return () unless defined(my $expanded = $self->_expand_order_by($arg));
1172
2e3cc357 1173 return $self->_chunkify_order_by($expanded);
1174}
1175
1176sub _chunkify_order_by {
1177 my ($self, $expanded) = @_;
1b630cfe 1178
79d310f2 1179 return grep length, $self->render_aqt($expanded)
1b630cfe 1180 if $expanded->{-ident} or @{$expanded->{-literal}||[]} == 1;
1181
33177570 1182 for ($expanded) {
352d74bc 1183 if (ref() eq 'HASH' and my $l = $_->{-list}) {
1184 return map $self->_chunkify_order_by($_), @$l;
33177570 1185 }
79d310f2 1186 return [ $self->render_aqt($_) ];
33177570 1187 }
1188}
1189
96449e8e 1190#======================================================================
1191# DATASOURCE (FOR NOW, JUST PLAIN TABLE OR LIST OF TABLES)
1192#======================================================================
1193
1194sub _table {
1195 my $self = shift;
1196 my $from = shift;
79d310f2 1197 ($self->render_aqt(
8476c6a3 1198 $self->_expand_maybe_list_expr($from, undef, -ident)
7ad12721 1199 ))[0];
96449e8e 1200}
1201
1202
1203#======================================================================
1204# UTILITY FUNCTIONS
1205#======================================================================
1206
8476c6a3 1207sub _expand_maybe_list_expr {
1208 my ($self, $expr, $logic, $default) = @_;
bba04f52 1209 my $e = do {
1210 if (ref($expr) eq 'ARRAY') {
352d74bc 1211 return { -list => [
4ee3313d 1212 map $self->expand_expr($_, $default), @$expr
bba04f52 1213 ] } if @$expr > 1;
1214 $expr->[0]
1215 } else {
1216 $expr
1217 }
1218 };
4ee3313d 1219 return $self->expand_expr($e, $default);
8476c6a3 1220}
1221
955e77ca 1222# highly optimized, as it's called way too often
96449e8e 1223sub _quote {
955e77ca 1224 # my ($self, $label) = @_;
96449e8e 1225
955e77ca 1226 return '' unless defined $_[1];
955e77ca 1227 return ${$_[1]} if ref($_[1]) eq 'SCALAR';
d3162b5c 1228 puke 'Identifier cannot be hashref' if ref($_[1]) eq 'HASH';
96449e8e 1229
d3162b5c 1230 unless ($_[0]->{quote_char}) {
1231 if (ref($_[1]) eq 'ARRAY') {
1232 return join($_[0]->{name_sep}||'.', @{$_[1]});
1233 } else {
1234 $_[0]->_assert_pass_injection_guard($_[1]);
1235 return $_[1];
1236 }
1237 }
96449e8e 1238
07d7c35c 1239 my $qref = ref $_[0]->{quote_char};
439834d3 1240 my ($l, $r) =
1241 !$qref ? ($_[0]->{quote_char}, $_[0]->{quote_char})
1242 : ($qref eq 'ARRAY') ? @{$_[0]->{quote_char}}
1243 : puke "Unsupported quote_char format: $_[0]->{quote_char}";
1244
46be4313 1245 my $esc = $_[0]->{escape_char} || $r;
96449e8e 1246
07d7c35c 1247 # parts containing * are naturally unquoted
d3162b5c 1248 return join(
1249 $_[0]->{name_sep}||'',
1250 map +(
1251 $_ eq '*'
1252 ? $_
1253 : do { (my $n = $_) =~ s/(\Q$esc\E|\Q$r\E)/$esc$1/g; $l . $n . $r }
1254 ),
1255 (ref($_[1]) eq 'ARRAY'
1256 ? @{$_[1]}
1257 : (
1258 $_[0]->{name_sep}
1259 ? split (/\Q$_[0]->{name_sep}\E/, $_[1] )
1260 : $_[1]
1261 )
1262 )
955e77ca 1263 );
96449e8e 1264}
1265
1266
1267# Conversion, if applicable
d7c862e0 1268sub _convert {
07d7c35c 1269 #my ($self, $arg) = @_;
7ad12721 1270 if ($_[0]->{convert_where}) {
1271 return $_[0]->_sqlcase($_[0]->{convert_where}) .'(' . $_[1] . ')';
96449e8e 1272 }
07d7c35c 1273 return $_[1];
96449e8e 1274}
1275
1276# And bindtype
d7c862e0 1277sub _bindtype {
07d7c35c 1278 #my ($self, $col, @vals) = @_;
07d7c35c 1279 # called often - tighten code
1280 return $_[0]->{bindtype} eq 'columns'
1281 ? map {[$_[1], $_]} @_[2 .. $#_]
1282 : @_[2 .. $#_]
1283 ;
96449e8e 1284}
1285
fe3ae272 1286# Dies if any element of @bind is not in [colname => value] format
1287# if bindtype is 'columns'.
1288sub _assert_bindval_matches_bindtype {
c94a6c93 1289# my ($self, @bind) = @_;
1290 my $self = shift;
fe3ae272 1291 if ($self->{bindtype} eq 'columns') {
c94a6c93 1292 for (@_) {
1293 if (!defined $_ || ref($_) ne 'ARRAY' || @$_ != 2) {
3a06278c 1294 puke "bindtype 'columns' selected, you need to pass: [column_name => bind_value]"
fe3ae272 1295 }
1296 }
1297 }
1298}
1299
96449e8e 1300sub _join_sql_clauses {
1301 my ($self, $logic, $clauses_aref, $bind_aref) = @_;
1302
1303 if (@$clauses_aref > 1) {
1304 my $join = " " . $self->_sqlcase($logic) . " ";
1305 my $sql = '( ' . join($join, @$clauses_aref) . ' )';
1306 return ($sql, @$bind_aref);
1307 }
1308 elsif (@$clauses_aref) {
1309 return ($clauses_aref->[0], @$bind_aref); # no parentheses
1310 }
1311 else {
1312 return (); # if no SQL, ignore @$bind_aref
1313 }
1314}
1315
1316
1317# Fix SQL case, if so requested
1318sub _sqlcase {
96449e8e 1319 # LDNOTE: if $self->{case} is true, then it contains 'lower', so we
1320 # don't touch the argument ... crooked logic, but let's not change it!
07d7c35c 1321 return $_[0]->{case} ? $_[1] : uc($_[1]);
96449e8e 1322}
1323
1324
1325#======================================================================
1326# DISPATCHING FROM REFKIND
1327#======================================================================
1328
1329sub _refkind {
1330 my ($self, $data) = @_;
96449e8e 1331
955e77ca 1332 return 'UNDEF' unless defined $data;
1333
1334 # blessed objects are treated like scalars
1335 my $ref = (Scalar::Util::blessed $data) ? '' : ref $data;
1336
1337 return 'SCALAR' unless $ref;
1338
1339 my $n_steps = 1;
1340 while ($ref eq 'REF') {
96449e8e 1341 $data = $$data;
955e77ca 1342 $ref = (Scalar::Util::blessed $data) ? '' : ref $data;
1343 $n_steps++ if $ref;
96449e8e 1344 }
1345
848556bc 1346 return ($ref||'SCALAR') . ('REF' x $n_steps);
96449e8e 1347}
1348
1349sub _try_refkind {
1350 my ($self, $data) = @_;
1351 my @try = ($self->_refkind($data));
1352 push @try, 'SCALAR_or_UNDEF' if $try[0] eq 'SCALAR' || $try[0] eq 'UNDEF';
1353 push @try, 'FALLBACK';
955e77ca 1354 return \@try;
96449e8e 1355}
1356
1357sub _METHOD_FOR_refkind {
1358 my ($self, $meth_prefix, $data) = @_;
f39eaa60 1359
1360 my $method;
955e77ca 1361 for (@{$self->_try_refkind($data)}) {
f39eaa60 1362 $method = $self->can($meth_prefix."_".$_)
1363 and last;
1364 }
1365
1366 return $method || puke "cannot dispatch on '$meth_prefix' for ".$self->_refkind($data);
96449e8e 1367}
1368
1369
1370sub _SWITCH_refkind {
1371 my ($self, $data, $dispatch_table) = @_;
1372
f39eaa60 1373 my $coderef;
955e77ca 1374 for (@{$self->_try_refkind($data)}) {
f39eaa60 1375 $coderef = $dispatch_table->{$_}
1376 and last;
1377 }
1378
1379 puke "no dispatch entry for ".$self->_refkind($data)
1380 unless $coderef;
1381
96449e8e 1382 $coderef->();
1383}
1384
1385
1386
1387
1388#======================================================================
1389# VALUES, GENERATE, AUTOLOAD
1390#======================================================================
1391
1392# LDNOTE: original code from nwiger, didn't touch code in that section
1393# I feel the AUTOLOAD stuff should not be the default, it should
1394# only be activated on explicit demand by user.
1395
1396sub values {
1397 my $self = shift;
1398 my $data = shift || return;
1399 puke "Argument to ", __PACKAGE__, "->values must be a \\%hash"
1400 unless ref $data eq 'HASH';
bab725ce 1401
1402 my @all_bind;
ca4f826a 1403 foreach my $k (sort keys %$data) {
bab725ce 1404 my $v = $data->{$k};
1405 $self->_SWITCH_refkind($v, {
9d48860e 1406 ARRAYREF => sub {
bab725ce 1407 if ($self->{array_datatypes}) { # array datatype
1408 push @all_bind, $self->_bindtype($k, $v);
1409 }
1410 else { # literal SQL with bind
1411 my ($sql, @bind) = @$v;
1412 $self->_assert_bindval_matches_bindtype(@bind);
1413 push @all_bind, @bind;
1414 }
1415 },
1416 ARRAYREFREF => sub { # literal SQL with bind
1417 my ($sql, @bind) = @${$v};
1418 $self->_assert_bindval_matches_bindtype(@bind);
1419 push @all_bind, @bind;
1420 },
1421 SCALARREF => sub { # literal SQL without bind
1422 },
1423 SCALAR_or_UNDEF => sub {
1424 push @all_bind, $self->_bindtype($k, $v);
1425 },
1426 });
1427 }
1428
1429 return @all_bind;
96449e8e 1430}
1431
1432sub generate {
1433 my $self = shift;
1434
1435 my(@sql, @sqlq, @sqlv);
1436
1437 for (@_) {
1438 my $ref = ref $_;
1439 if ($ref eq 'HASH') {
1440 for my $k (sort keys %$_) {
1441 my $v = $_->{$k};
1442 my $r = ref $v;
1443 my $label = $self->_quote($k);
1444 if ($r eq 'ARRAY') {
fe3ae272 1445 # literal SQL with bind
1446 my ($sql, @bind) = @$v;
1447 $self->_assert_bindval_matches_bindtype(@bind);
96449e8e 1448 push @sqlq, "$label = $sql";
fe3ae272 1449 push @sqlv, @bind;
96449e8e 1450 } elsif ($r eq 'SCALAR') {
fe3ae272 1451 # literal SQL without bind
96449e8e 1452 push @sqlq, "$label = $$v";
9d48860e 1453 } else {
96449e8e 1454 push @sqlq, "$label = ?";
1455 push @sqlv, $self->_bindtype($k, $v);
1456 }
1457 }
1458 push @sql, $self->_sqlcase('set'), join ', ', @sqlq;
1459 } elsif ($ref eq 'ARRAY') {
1460 # unlike insert(), assume these are ONLY the column names, i.e. for SQL
1461 for my $v (@$_) {
1462 my $r = ref $v;
fe3ae272 1463 if ($r eq 'ARRAY') { # literal SQL with bind
1464 my ($sql, @bind) = @$v;
1465 $self->_assert_bindval_matches_bindtype(@bind);
1466 push @sqlq, $sql;
1467 push @sqlv, @bind;
1468 } elsif ($r eq 'SCALAR') { # literal SQL without bind
96449e8e 1469 # embedded literal SQL
1470 push @sqlq, $$v;
9d48860e 1471 } else {
96449e8e 1472 push @sqlq, '?';
1473 push @sqlv, $v;
1474 }
1475 }
1476 push @sql, '(' . join(', ', @sqlq) . ')';
1477 } elsif ($ref eq 'SCALAR') {
1478 # literal SQL
1479 push @sql, $$_;
1480 } else {
1481 # strings get case twiddled
1482 push @sql, $self->_sqlcase($_);
1483 }
1484 }
1485
1486 my $sql = join ' ', @sql;
1487
1488 # this is pretty tricky
1489 # if ask for an array, return ($stmt, @bind)
1490 # otherwise, s/?/shift @sqlv/ to put it inline
1491 if (wantarray) {
1492 return ($sql, @sqlv);
1493 } else {
1494 1 while $sql =~ s/\?/my $d = shift(@sqlv);
1495 ref $d ? $d->[1] : $d/e;
1496 return $sql;
1497 }
1498}
1499
1500
1501sub DESTROY { 1 }
1502
1503sub AUTOLOAD {
1504 # This allows us to check for a local, then _form, attr
1505 my $self = shift;
1506 my($name) = $AUTOLOAD =~ /.*::(.+)/;
1507 return $self->generate($name, @_);
1508}
1509
15101;
1511
1512
1513
1514__END__
32eab2da 1515
1516=head1 NAME
1517
1518SQL::Abstract - Generate SQL from Perl data structures
1519
1520=head1 SYNOPSIS
1521
1522 use SQL::Abstract;
1523
1524 my $sql = SQL::Abstract->new;
1525
85783f3c 1526 my($stmt, @bind) = $sql->select($source, \@fields, \%where, $order);
32eab2da 1527
1528 my($stmt, @bind) = $sql->insert($table, \%fieldvals || \@values);
1529
1530 my($stmt, @bind) = $sql->update($table, \%fieldvals, \%where);
1531
1532 my($stmt, @bind) = $sql->delete($table, \%where);
1533
1534 # Then, use these in your DBI statements
1535 my $sth = $dbh->prepare($stmt);
1536 $sth->execute(@bind);
1537
1538 # Just generate the WHERE clause
85783f3c 1539 my($stmt, @bind) = $sql->where(\%where, $order);
32eab2da 1540
1541 # Return values in the same order, for hashed queries
1542 # See PERFORMANCE section for more details
1543 my @bind = $sql->values(\%fieldvals);
1544
1545=head1 DESCRIPTION
1546
1547This module was inspired by the excellent L<DBIx::Abstract>.
1548However, in using that module I found that what I really wanted
1549to do was generate SQL, but still retain complete control over my
1550statement handles and use the DBI interface. So, I set out to
1551create an abstract SQL generation module.
1552
1553While based on the concepts used by L<DBIx::Abstract>, there are
1554several important differences, especially when it comes to WHERE
1555clauses. I have modified the concepts used to make the SQL easier
1556to generate from Perl data structures and, IMO, more intuitive.
1557The underlying idea is for this module to do what you mean, based
1558on the data structures you provide it. The big advantage is that
1559you don't have to modify your code every time your data changes,
1560as this module figures it out.
1561
1562To begin with, an SQL INSERT is as easy as just specifying a hash
1563of C<key=value> pairs:
1564
1565 my %data = (
1566 name => 'Jimbo Bobson',
1567 phone => '123-456-7890',
1568 address => '42 Sister Lane',
1569 city => 'St. Louis',
1570 state => 'Louisiana',
1571 );
1572
1573The SQL can then be generated with this:
1574
1575 my($stmt, @bind) = $sql->insert('people', \%data);
1576
1577Which would give you something like this:
1578
1579 $stmt = "INSERT INTO people
1580 (address, city, name, phone, state)
1581 VALUES (?, ?, ?, ?, ?)";
1582 @bind = ('42 Sister Lane', 'St. Louis', 'Jimbo Bobson',
1583 '123-456-7890', 'Louisiana');
1584
1585These are then used directly in your DBI code:
1586
1587 my $sth = $dbh->prepare($stmt);
1588 $sth->execute(@bind);
1589
96449e8e 1590=head2 Inserting and Updating Arrays
1591
1592If your database has array types (like for example Postgres),
1593activate the special option C<< array_datatypes => 1 >>
9d48860e 1594when creating the C<SQL::Abstract> object.
96449e8e 1595Then you may use an arrayref to insert and update database array types:
1596
1597 my $sql = SQL::Abstract->new(array_datatypes => 1);
1598 my %data = (
1599 planets => [qw/Mercury Venus Earth Mars/]
1600 );
9d48860e 1601
96449e8e 1602 my($stmt, @bind) = $sql->insert('solar_system', \%data);
1603
1604This results in:
1605
1606 $stmt = "INSERT INTO solar_system (planets) VALUES (?)"
1607
1608 @bind = (['Mercury', 'Venus', 'Earth', 'Mars']);
1609
1610
1611=head2 Inserting and Updating SQL
1612
1613In order to apply SQL functions to elements of your C<%data> you may
1614specify a reference to an arrayref for the given hash value. For example,
1615if you need to execute the Oracle C<to_date> function on a value, you can
1616say something like this:
32eab2da 1617
1618 my %data = (
1619 name => 'Bill',
3ae1c5e2 1620 date_entered => \[ "to_date(?,'MM/DD/YYYY')", "03/02/2003" ],
9d48860e 1621 );
32eab2da 1622
1623The first value in the array is the actual SQL. Any other values are
1624optional and would be included in the bind values array. This gives
1625you:
1626
1627 my($stmt, @bind) = $sql->insert('people', \%data);
1628
9d48860e 1629 $stmt = "INSERT INTO people (name, date_entered)
32eab2da 1630 VALUES (?, to_date(?,'MM/DD/YYYY'))";
1631 @bind = ('Bill', '03/02/2003');
1632
1633An UPDATE is just as easy, all you change is the name of the function:
1634
1635 my($stmt, @bind) = $sql->update('people', \%data);
1636
1637Notice that your C<%data> isn't touched; the module will generate
1638the appropriately quirky SQL for you automatically. Usually you'll
1639want to specify a WHERE clause for your UPDATE, though, which is
1640where handling C<%where> hashes comes in handy...
1641
96449e8e 1642=head2 Complex where statements
1643
32eab2da 1644This module can generate pretty complicated WHERE statements
1645easily. For example, simple C<key=value> pairs are taken to mean
1646equality, and if you want to see if a field is within a set
1647of values, you can use an arrayref. Let's say we wanted to
1648SELECT some data based on this criteria:
1649
1650 my %where = (
1651 requestor => 'inna',
1652 worker => ['nwiger', 'rcwe', 'sfz'],
1653 status => { '!=', 'completed' }
1654 );
1655
1656 my($stmt, @bind) = $sql->select('tickets', '*', \%where);
1657
1658The above would give you something like this:
1659
1660 $stmt = "SELECT * FROM tickets WHERE
1661 ( requestor = ? ) AND ( status != ? )
1662 AND ( worker = ? OR worker = ? OR worker = ? )";
1663 @bind = ('inna', 'completed', 'nwiger', 'rcwe', 'sfz');
1664
1665Which you could then use in DBI code like so:
1666
1667 my $sth = $dbh->prepare($stmt);
1668 $sth->execute(@bind);
1669
1670Easy, eh?
1671
0da0fe34 1672=head1 METHODS
32eab2da 1673
13cc86af 1674The methods are simple. There's one for every major SQL operation,
32eab2da 1675and a constructor you use first. The arguments are specified in a
13cc86af 1676similar order for each method (table, then fields, then a where
32eab2da 1677clause) to try and simplify things.
1678
32eab2da 1679=head2 new(option => 'value')
1680
1681The C<new()> function takes a list of options and values, and returns
1682a new B<SQL::Abstract> object which can then be used to generate SQL
1683through the methods below. The options accepted are:
1684
1685=over
1686
1687=item case
1688
1689If set to 'lower', then SQL will be generated in all lowercase. By
1690default SQL is generated in "textbook" case meaning something like:
1691
1692 SELECT a_field FROM a_table WHERE some_field LIKE '%someval%'
1693
96449e8e 1694Any setting other than 'lower' is ignored.
1695
32eab2da 1696=item cmp
1697
1698This determines what the default comparison operator is. By default
1699it is C<=>, meaning that a hash like this:
1700
1701 %where = (name => 'nwiger', email => 'nate@wiger.org');
1702
1703Will generate SQL like this:
1704
1705 WHERE name = 'nwiger' AND email = 'nate@wiger.org'
1706
1707However, you may want loose comparisons by default, so if you set
1708C<cmp> to C<like> you would get SQL such as:
1709
1710 WHERE name like 'nwiger' AND email like 'nate@wiger.org'
1711
3af02ccb 1712You can also override the comparison on an individual basis - see
32eab2da 1713the huge section on L</"WHERE CLAUSES"> at the bottom.
1714
96449e8e 1715=item sqltrue, sqlfalse
1716
1717Expressions for inserting boolean values within SQL statements.
6e0c6552 1718By default these are C<1=1> and C<1=0>. They are used
1719by the special operators C<-in> and C<-not_in> for generating
1720correct SQL even when the argument is an empty array (see below).
96449e8e 1721
32eab2da 1722=item logic
1723
1724This determines the default logical operator for multiple WHERE
7cac25e6 1725statements in arrays or hashes. If absent, the default logic is "or"
1726for arrays, and "and" for hashes. This means that a WHERE
32eab2da 1727array of the form:
1728
1729 @where = (
9d48860e 1730 event_date => {'>=', '2/13/99'},
1731 event_date => {'<=', '4/24/03'},
32eab2da 1732 );
1733
7cac25e6 1734will generate SQL like this:
32eab2da 1735
1736 WHERE event_date >= '2/13/99' OR event_date <= '4/24/03'
1737
1738This is probably not what you want given this query, though (look
1739at the dates). To change the "OR" to an "AND", simply specify:
1740
1741 my $sql = SQL::Abstract->new(logic => 'and');
1742
1743Which will change the above C<WHERE> to:
1744
1745 WHERE event_date >= '2/13/99' AND event_date <= '4/24/03'
1746
96449e8e 1747The logic can also be changed locally by inserting
be21dde3 1748a modifier in front of an arrayref:
96449e8e 1749
9d48860e 1750 @where = (-and => [event_date => {'>=', '2/13/99'},
7cac25e6 1751 event_date => {'<=', '4/24/03'} ]);
96449e8e 1752
1753See the L</"WHERE CLAUSES"> section for explanations.
1754
32eab2da 1755=item convert
1756
1757This will automatically convert comparisons using the specified SQL
1758function for both column and value. This is mostly used with an argument
1759of C<upper> or C<lower>, so that the SQL will have the effect of
1760case-insensitive "searches". For example, this:
1761
1762 $sql = SQL::Abstract->new(convert => 'upper');
1763 %where = (keywords => 'MaKe iT CAse inSeNSItive');
1764
1765Will turn out the following SQL:
1766
1767 WHERE upper(keywords) like upper('MaKe iT CAse inSeNSItive')
1768
1769The conversion can be C<upper()>, C<lower()>, or any other SQL function
1770that can be applied symmetrically to fields (actually B<SQL::Abstract> does
1771not validate this option; it will just pass through what you specify verbatim).
1772
1773=item bindtype
1774
1775This is a kludge because many databases suck. For example, you can't
1776just bind values using DBI's C<execute()> for Oracle C<CLOB> or C<BLOB> fields.
1777Instead, you have to use C<bind_param()>:
1778
1779 $sth->bind_param(1, 'reg data');
1780 $sth->bind_param(2, $lots, {ora_type => ORA_CLOB});
1781
1782The problem is, B<SQL::Abstract> will normally just return a C<@bind> array,
1783which loses track of which field each slot refers to. Fear not.
1784
1785If you specify C<bindtype> in new, you can determine how C<@bind> is returned.
1786Currently, you can specify either C<normal> (default) or C<columns>. If you
1787specify C<columns>, you will get an array that looks like this:
1788
1789 my $sql = SQL::Abstract->new(bindtype => 'columns');
1790 my($stmt, @bind) = $sql->insert(...);
1791
1792 @bind = (
1793 [ 'column1', 'value1' ],
1794 [ 'column2', 'value2' ],
1795 [ 'column3', 'value3' ],
1796 );
1797
1798You can then iterate through this manually, using DBI's C<bind_param()>.
e3f9dff4 1799
32eab2da 1800 $sth->prepare($stmt);
1801 my $i = 1;
1802 for (@bind) {
1803 my($col, $data) = @$_;
1804 if ($col eq 'details' || $col eq 'comments') {
1805 $sth->bind_param($i, $data, {ora_type => ORA_CLOB});
1806 } elsif ($col eq 'image') {
1807 $sth->bind_param($i, $data, {ora_type => ORA_BLOB});
1808 } else {
1809 $sth->bind_param($i, $data);
1810 }
1811 $i++;
1812 }
1813 $sth->execute; # execute without @bind now
1814
1815Now, why would you still use B<SQL::Abstract> if you have to do this crap?
1816Basically, the advantage is still that you don't have to care which fields
1817are or are not included. You could wrap that above C<for> loop in a simple
1818sub called C<bind_fields()> or something and reuse it repeatedly. You still
1819get a layer of abstraction over manual SQL specification.
1820
3ae1c5e2 1821Note that if you set L</bindtype> to C<columns>, the C<\[ $sql, @bind ]>
deb148a2 1822construct (see L</Literal SQL with placeholders and bind values (subqueries)>)
1823will expect the bind values in this format.
1824
32eab2da 1825=item quote_char
1826
1827This is the character that a table or column name will be quoted
9d48860e 1828with. By default this is an empty string, but you could set it to
32eab2da 1829the character C<`>, to generate SQL like this:
1830
1831 SELECT `a_field` FROM `a_table` WHERE `some_field` LIKE '%someval%'
1832
96449e8e 1833Alternatively, you can supply an array ref of two items, the first being the left
1834hand quote character, and the second the right hand quote character. For
1835example, you could supply C<['[',']']> for SQL Server 2000 compliant quotes
1836that generates SQL like this:
1837
1838 SELECT [a_field] FROM [a_table] WHERE [some_field] LIKE '%someval%'
1839
9d48860e 1840Quoting is useful if you have tables or columns names that are reserved
96449e8e 1841words in your database's SQL dialect.
32eab2da 1842
46be4313 1843=item escape_char
1844
1845This is the character that will be used to escape L</quote_char>s appearing
1846in an identifier before it has been quoted.
1847
80790166 1848The parameter default in case of a single L</quote_char> character is the quote
46be4313 1849character itself.
1850
1851When opening-closing-style quoting is used (L</quote_char> is an arrayref)
9de2bd86 1852this parameter defaults to the B<closing (right)> L</quote_char>. Occurrences
46be4313 1853of the B<opening (left)> L</quote_char> within the identifier are currently left
1854untouched. The default for opening-closing-style quotes may change in future
1855versions, thus you are B<strongly encouraged> to specify the escape character
1856explicitly.
1857
32eab2da 1858=item name_sep
1859
1860This is the character that separates a table and column name. It is
1861necessary to specify this when the C<quote_char> option is selected,
1862so that tables and column names can be individually quoted like this:
1863
1864 SELECT `table`.`one_field` FROM `table` WHERE `table`.`other_field` = 1
1865
b6251592 1866=item injection_guard
1867
1868A regular expression C<qr/.../> that is applied to any C<-function> and unquoted
1869column name specified in a query structure. This is a safety mechanism to avoid
1870injection attacks when mishandling user input e.g.:
1871
1872 my %condition_as_column_value_pairs = get_values_from_user();
1873 $sqla->select( ... , \%condition_as_column_value_pairs );
1874
1875If the expression matches an exception is thrown. Note that literal SQL
1876supplied via C<\'...'> or C<\['...']> is B<not> checked in any way.
1877
1878Defaults to checking for C<;> and the C<GO> keyword (TransactSQL)
1879
96449e8e 1880=item array_datatypes
32eab2da 1881
9d48860e 1882When this option is true, arrayrefs in INSERT or UPDATE are
1883interpreted as array datatypes and are passed directly
96449e8e 1884to the DBI layer.
1885When this option is false, arrayrefs are interpreted
1886as literal SQL, just like refs to arrayrefs
1887(but this behavior is for backwards compatibility; when writing
1888new queries, use the "reference to arrayref" syntax
1889for literal SQL).
32eab2da 1890
32eab2da 1891
96449e8e 1892=item special_ops
32eab2da 1893
9d48860e 1894Takes a reference to a list of "special operators"
96449e8e 1895to extend the syntax understood by L<SQL::Abstract>.
1896See section L</"SPECIAL OPERATORS"> for details.
32eab2da 1897
59f23b3d 1898=item unary_ops
1899
9d48860e 1900Takes a reference to a list of "unary operators"
59f23b3d 1901to extend the syntax understood by L<SQL::Abstract>.
1902See section L</"UNARY OPERATORS"> for details.
1903
32eab2da 1904
32eab2da 1905
96449e8e 1906=back
32eab2da 1907
02288357 1908=head2 insert($table, \@values || \%fieldvals, \%options)
32eab2da 1909
1910This is the simplest function. You simply give it a table name
1911and either an arrayref of values or hashref of field/value pairs.
1912It returns an SQL INSERT statement and a list of bind values.
96449e8e 1913See the sections on L</"Inserting and Updating Arrays"> and
1914L</"Inserting and Updating SQL"> for information on how to insert
1915with those data types.
32eab2da 1916
02288357 1917The optional C<\%options> hash reference may contain additional
1918options to generate the insert SQL. Currently supported options
1919are:
1920
1921=over 4
1922
1923=item returning
1924
1925Takes either a scalar of raw SQL fields, or an array reference of
1926field names, and adds on an SQL C<RETURNING> statement at the end.
1927This allows you to return data generated by the insert statement
1928(such as row IDs) without performing another C<SELECT> statement.
1929Note, however, this is not part of the SQL standard and may not
1930be supported by all database engines.
1931
1932=back
1933
95904db5 1934=head2 update($table, \%fieldvals, \%where, \%options)
32eab2da 1935
1936This takes a table, hashref of field/value pairs, and an optional
86298391 1937hashref L<WHERE clause|/WHERE CLAUSES>. It returns an SQL UPDATE function and a list
32eab2da 1938of bind values.
96449e8e 1939See the sections on L</"Inserting and Updating Arrays"> and
1940L</"Inserting and Updating SQL"> for information on how to insert
1941with those data types.
32eab2da 1942
95904db5 1943The optional C<\%options> hash reference may contain additional
1944options to generate the update SQL. Currently supported options
1945are:
1946
1947=over 4
1948
1949=item returning
1950
1951See the C<returning> option to
1952L<insert|/insert($table, \@values || \%fieldvals, \%options)>.
1953
1954=back
1955
96449e8e 1956=head2 select($source, $fields, $where, $order)
32eab2da 1957
9d48860e 1958This returns a SQL SELECT statement and associated list of bind values, as
be21dde3 1959specified by the arguments:
32eab2da 1960
96449e8e 1961=over
32eab2da 1962
96449e8e 1963=item $source
32eab2da 1964
9d48860e 1965Specification of the 'FROM' part of the statement.
96449e8e 1966The argument can be either a plain scalar (interpreted as a table
1967name, will be quoted), or an arrayref (interpreted as a list
1968of table names, joined by commas, quoted), or a scalarref
063097a3 1969(literal SQL, not quoted).
32eab2da 1970
96449e8e 1971=item $fields
32eab2da 1972
9d48860e 1973Specification of the list of fields to retrieve from
96449e8e 1974the source.
1975The argument can be either an arrayref (interpreted as a list
9d48860e 1976of field names, will be joined by commas and quoted), or a
96449e8e 1977plain scalar (literal SQL, not quoted).
521647e7 1978Please observe that this API is not as flexible as that of
1979the first argument C<$source>, for backwards compatibility reasons.
32eab2da 1980
96449e8e 1981=item $where
32eab2da 1982
96449e8e 1983Optional argument to specify the WHERE part of the query.
1984The argument is most often a hashref, but can also be
9d48860e 1985an arrayref or plain scalar --
96449e8e 1986see section L<WHERE clause|/"WHERE CLAUSES"> for details.
32eab2da 1987
96449e8e 1988=item $order
32eab2da 1989
96449e8e 1990Optional argument to specify the ORDER BY part of the query.
9d48860e 1991The argument can be a scalar, a hashref or an arrayref
96449e8e 1992-- see section L<ORDER BY clause|/"ORDER BY CLAUSES">
1993for details.
32eab2da 1994
96449e8e 1995=back
32eab2da 1996
32eab2da 1997
85327cd5 1998=head2 delete($table, \%where, \%options)
32eab2da 1999
86298391 2000This takes a table name and optional hashref L<WHERE clause|/WHERE CLAUSES>.
32eab2da 2001It returns an SQL DELETE statement and list of bind values.
2002
85327cd5 2003The optional C<\%options> hash reference may contain additional
2004options to generate the delete SQL. Currently supported options
2005are:
2006
2007=over 4
2008
2009=item returning
2010
2011See the C<returning> option to
2012L<insert|/insert($table, \@values || \%fieldvals, \%options)>.
2013
2014=back
2015
85783f3c 2016=head2 where(\%where, $order)
32eab2da 2017
2018This is used to generate just the WHERE clause. For example,
2019if you have an arbitrary data structure and know what the
2020rest of your SQL is going to look like, but want an easy way
2021to produce a WHERE clause, use this. It returns an SQL WHERE
2022clause and list of bind values.
2023
32eab2da 2024
2025=head2 values(\%data)
2026
2027This just returns the values from the hash C<%data>, in the same
2028order that would be returned from any of the other above queries.
2029Using this allows you to markedly speed up your queries if you
2030are affecting lots of rows. See below under the L</"PERFORMANCE"> section.
2031
32eab2da 2032=head2 generate($any, 'number', $of, \@data, $struct, \%types)
2033
2034Warning: This is an experimental method and subject to change.
2035
2036This returns arbitrarily generated SQL. It's a really basic shortcut.
2037It will return two different things, depending on return context:
2038
2039 my($stmt, @bind) = $sql->generate('create table', \$table, \@fields);
2040 my $stmt_and_val = $sql->generate('create table', \$table, \@fields);
2041
2042These would return the following:
2043
2044 # First calling form
2045 $stmt = "CREATE TABLE test (?, ?)";
2046 @bind = (field1, field2);
2047
2048 # Second calling form
2049 $stmt_and_val = "CREATE TABLE test (field1, field2)";
2050
2051Depending on what you're trying to do, it's up to you to choose the correct
2052format. In this example, the second form is what you would want.
2053
2054By the same token:
2055
2056 $sql->generate('alter session', { nls_date_format => 'MM/YY' });
2057
2058Might give you:
2059
2060 ALTER SESSION SET nls_date_format = 'MM/YY'
2061
2062You get the idea. Strings get their case twiddled, but everything
2063else remains verbatim.
2064
0da0fe34 2065=head1 EXPORTABLE FUNCTIONS
2066
2067=head2 is_plain_value
2068
2069Determines if the supplied argument is a plain value as understood by this
2070module:
2071
2072=over
2073
2074=item * The value is C<undef>
2075
2076=item * The value is a non-reference
2077
2078=item * The value is an object with stringification overloading
2079
2080=item * The value is of the form C<< { -value => $anything } >>
2081
2082=back
2083
9de2bd86 2084On failure returns C<undef>, on success returns a B<scalar> reference
966200cc 2085to the original supplied argument.
0da0fe34 2086
843a94b5 2087=over
2088
2089=item * Note
2090
2091The stringification overloading detection is rather advanced: it takes
2092into consideration not only the presence of a C<""> overload, but if that
2093fails also checks for enabled
2094L<autogenerated versions of C<"">|overload/Magic Autogeneration>, based
2095on either C<0+> or C<bool>.
2096
2097Unfortunately testing in the field indicates that this
2098detection B<< may tickle a latent bug in perl versions before 5.018 >>,
2099but only when very large numbers of stringifying objects are involved.
2100At the time of writing ( Sep 2014 ) there is no clear explanation of
2101the direct cause, nor is there a manageably small test case that reliably
2102reproduces the problem.
2103
2104If you encounter any of the following exceptions in B<random places within
2105your application stack> - this module may be to blame:
2106
2107 Operation "ne": no method found,
2108 left argument in overloaded package <something>,
2109 right argument in overloaded package <something>
2110
2111or perhaps even
2112
2113 Stub found while resolving method "???" overloading """" in package <something>
2114
2115If you fall victim to the above - please attempt to reduce the problem
2116to something that could be sent to the L<SQL::Abstract developers
1f490ae4 2117|DBIx::Class/GETTING HELP/SUPPORT>
843a94b5 2118(either publicly or privately). As a workaround in the meantime you can
2119set C<$ENV{SQLA_ISVALUE_IGNORE_AUTOGENERATED_STRINGIFICATION}> to a true
2120value, which will most likely eliminate your problem (at the expense of
2121not being able to properly detect exotic forms of stringification).
2122
2123This notice and environment variable will be removed in a future version,
2124as soon as the underlying problem is found and a reliable workaround is
2125devised.
2126
2127=back
2128
0da0fe34 2129=head2 is_literal_value
2130
2131Determines if the supplied argument is a literal value as understood by this
2132module:
2133
2134=over
2135
2136=item * C<\$sql_string>
2137
2138=item * C<\[ $sql_string, @bind_values ]>
2139
0da0fe34 2140=back
2141
9de2bd86 2142On failure returns C<undef>, on success returns an B<array> reference
966200cc 2143containing the unpacked version of the supplied literal SQL and bind values.
0da0fe34 2144
32eab2da 2145=head1 WHERE CLAUSES
2146
96449e8e 2147=head2 Introduction
2148
32eab2da 2149This module uses a variation on the idea from L<DBIx::Abstract>. It
2150is B<NOT>, repeat I<not> 100% compatible. B<The main logic of this
2151module is that things in arrays are OR'ed, and things in hashes
2152are AND'ed.>
2153
2154The easiest way to explain is to show lots of examples. After
2155each C<%where> hash shown, it is assumed you used:
2156
2157 my($stmt, @bind) = $sql->where(\%where);
2158
2159However, note that the C<%where> hash can be used directly in any
2160of the other functions as well, as described above.
2161
96449e8e 2162=head2 Key-value pairs
2163
32eab2da 2164So, let's get started. To begin, a simple hash:
2165
2166 my %where = (
2167 user => 'nwiger',
2168 status => 'completed'
2169 );
2170
2171Is converted to SQL C<key = val> statements:
2172
2173 $stmt = "WHERE user = ? AND status = ?";
2174 @bind = ('nwiger', 'completed');
2175
2176One common thing I end up doing is having a list of values that
2177a field can be in. To do this, simply specify a list inside of
2178an arrayref:
2179
2180 my %where = (
2181 user => 'nwiger',
2182 status => ['assigned', 'in-progress', 'pending'];
2183 );
2184
2185This simple code will create the following:
9d48860e 2186
32eab2da 2187 $stmt = "WHERE user = ? AND ( status = ? OR status = ? OR status = ? )";
2188 @bind = ('nwiger', 'assigned', 'in-progress', 'pending');
2189
9d48860e 2190A field associated to an empty arrayref will be considered a
7cac25e6 2191logical false and will generate 0=1.
8a68b5be 2192
b864ba9b 2193=head2 Tests for NULL values
2194
2195If the value part is C<undef> then this is converted to SQL <IS NULL>
2196
2197 my %where = (
2198 user => 'nwiger',
2199 status => undef,
2200 );
2201
2202becomes:
2203
2204 $stmt = "WHERE user = ? AND status IS NULL";
2205 @bind = ('nwiger');
2206
e9614080 2207To test if a column IS NOT NULL:
2208
2209 my %where = (
2210 user => 'nwiger',
2211 status => { '!=', undef },
2212 );
cc422895 2213
6e0c6552 2214=head2 Specific comparison operators
96449e8e 2215
32eab2da 2216If you want to specify a different type of operator for your comparison,
2217you can use a hashref for a given column:
2218
2219 my %where = (
2220 user => 'nwiger',
2221 status => { '!=', 'completed' }
2222 );
2223
2224Which would generate:
2225
2226 $stmt = "WHERE user = ? AND status != ?";
2227 @bind = ('nwiger', 'completed');
2228
2229To test against multiple values, just enclose the values in an arrayref:
2230
96449e8e 2231 status => { '=', ['assigned', 'in-progress', 'pending'] };
2232
f2d5020d 2233Which would give you:
96449e8e 2234
2235 "WHERE status = ? OR status = ? OR status = ?"
2236
2237
2238The hashref can also contain multiple pairs, in which case it is expanded
32eab2da 2239into an C<AND> of its elements:
2240
2241 my %where = (
2242 user => 'nwiger',
2243 status => { '!=', 'completed', -not_like => 'pending%' }
2244 );
2245
2246 # Or more dynamically, like from a form
2247 $where{user} = 'nwiger';
2248 $where{status}{'!='} = 'completed';
2249 $where{status}{'-not_like'} = 'pending%';
2250
2251 # Both generate this
2252 $stmt = "WHERE user = ? AND status != ? AND status NOT LIKE ?";
2253 @bind = ('nwiger', 'completed', 'pending%');
2254
96449e8e 2255
32eab2da 2256To get an OR instead, you can combine it with the arrayref idea:
2257
2258 my %where => (
2259 user => 'nwiger',
1a6f2a03 2260 priority => [ { '=', 2 }, { '>', 5 } ]
32eab2da 2261 );
2262
2263Which would generate:
2264
1a6f2a03 2265 $stmt = "WHERE ( priority = ? OR priority > ? ) AND user = ?";
2266 @bind = ('2', '5', 'nwiger');
32eab2da 2267
44b9e502 2268If you want to include literal SQL (with or without bind values), just use a
13cc86af 2269scalar reference or reference to an arrayref as the value:
44b9e502 2270
2271 my %where = (
2272 date_entered => { '>' => \["to_date(?, 'MM/DD/YYYY')", "11/26/2008"] },
2273 date_expires => { '<' => \"now()" }
2274 );
2275
2276Which would generate:
2277
13cc86af 2278 $stmt = "WHERE date_entered > to_date(?, 'MM/DD/YYYY') AND date_expires < now()";
44b9e502 2279 @bind = ('11/26/2008');
2280
96449e8e 2281
2282=head2 Logic and nesting operators
2283
2284In the example above,
2285there is a subtle trap if you want to say something like
32eab2da 2286this (notice the C<AND>):
2287
2288 WHERE priority != ? AND priority != ?
2289
2290Because, in Perl you I<can't> do this:
2291
13cc86af 2292 priority => { '!=' => 2, '!=' => 1 }
32eab2da 2293
2294As the second C<!=> key will obliterate the first. The solution
2295is to use the special C<-modifier> form inside an arrayref:
2296
9d48860e 2297 priority => [ -and => {'!=', 2},
96449e8e 2298 {'!=', 1} ]
2299
32eab2da 2300
2301Normally, these would be joined by C<OR>, but the modifier tells it
2302to use C<AND> instead. (Hint: You can use this in conjunction with the
2303C<logic> option to C<new()> in order to change the way your queries
2304work by default.) B<Important:> Note that the C<-modifier> goes
2305B<INSIDE> the arrayref, as an extra first element. This will
2306B<NOT> do what you think it might:
2307
2308 priority => -and => [{'!=', 2}, {'!=', 1}] # WRONG!
2309
2310Here is a quick list of equivalencies, since there is some overlap:
2311
2312 # Same
2313 status => {'!=', 'completed', 'not like', 'pending%' }
2314 status => [ -and => {'!=', 'completed'}, {'not like', 'pending%'}]
2315
2316 # Same
2317 status => {'=', ['assigned', 'in-progress']}
2318 status => [ -or => {'=', 'assigned'}, {'=', 'in-progress'}]
2319 status => [ {'=', 'assigned'}, {'=', 'in-progress'} ]
2320
e3f9dff4 2321
2322
be21dde3 2323=head2 Special operators: IN, BETWEEN, etc.
96449e8e 2324
32eab2da 2325You can also use the hashref format to compare a list of fields using the
2326C<IN> comparison operator, by specifying the list as an arrayref:
2327
2328 my %where = (
2329 status => 'completed',
2330 reportid => { -in => [567, 2335, 2] }
2331 );
2332
2333Which would generate:
2334
2335 $stmt = "WHERE status = ? AND reportid IN (?,?,?)";
2336 @bind = ('completed', '567', '2335', '2');
2337
9d48860e 2338The reverse operator C<-not_in> generates SQL C<NOT IN> and is used in
96449e8e 2339the same way.
2340
6e0c6552 2341If the argument to C<-in> is an empty array, 'sqlfalse' is generated
be21dde3 2342(by default: C<1=0>). Similarly, C<< -not_in => [] >> generates
2343'sqltrue' (by default: C<1=1>).
6e0c6552 2344
e41c3bdd 2345In addition to the array you can supply a chunk of literal sql or
2346literal sql with bind:
6e0c6552 2347
e41c3bdd 2348 my %where = {
2349 customer => { -in => \[
2350 'SELECT cust_id FROM cust WHERE balance > ?',
2351 2000,
2352 ],
2353 status => { -in => \'SELECT status_codes FROM states' },
2354 };
6e0c6552 2355
e41c3bdd 2356would generate:
2357
2358 $stmt = "WHERE (
2359 customer IN ( SELECT cust_id FROM cust WHERE balance > ? )
2360 AND status IN ( SELECT status_codes FROM states )
2361 )";
2362 @bind = ('2000');
2363
0dfd2442 2364Finally, if the argument to C<-in> is not a reference, it will be
2365treated as a single-element array.
e41c3bdd 2366
2367Another pair of operators is C<-between> and C<-not_between>,
96449e8e 2368used with an arrayref of two values:
32eab2da 2369
2370 my %where = (
2371 user => 'nwiger',
2372 completion_date => {
2373 -not_between => ['2002-10-01', '2003-02-06']
2374 }
2375 );
2376
2377Would give you:
2378
2379 WHERE user = ? AND completion_date NOT BETWEEN ( ? AND ? )
2380
e41c3bdd 2381Just like with C<-in> all plausible combinations of literal SQL
2382are possible:
2383
2384 my %where = {
2385 start0 => { -between => [ 1, 2 ] },
2386 start1 => { -between => \["? AND ?", 1, 2] },
2387 start2 => { -between => \"lower(x) AND upper(y)" },
9d48860e 2388 start3 => { -between => [
e41c3bdd 2389 \"lower(x)",
2390 \["upper(?)", 'stuff' ],
2391 ] },
2392 };
2393
2394Would give you:
2395
2396 $stmt = "WHERE (
2397 ( start0 BETWEEN ? AND ? )
2398 AND ( start1 BETWEEN ? AND ? )
2399 AND ( start2 BETWEEN lower(x) AND upper(y) )
2400 AND ( start3 BETWEEN lower(x) AND upper(?) )
2401 )";
2402 @bind = (1, 2, 1, 2, 'stuff');
2403
2404
9d48860e 2405These are the two builtin "special operators"; but the
be21dde3 2406list can be expanded: see section L</"SPECIAL OPERATORS"> below.
96449e8e 2407
59f23b3d 2408=head2 Unary operators: bool
97a920ef 2409
2410If you wish to test against boolean columns or functions within your
2411database you can use the C<-bool> and C<-not_bool> operators. For
2412example to test the column C<is_user> being true and the column
827bb0eb 2413C<is_enabled> being false you would use:-
97a920ef 2414
2415 my %where = (
2416 -bool => 'is_user',
2417 -not_bool => 'is_enabled',
2418 );
2419
2420Would give you:
2421
277b5d3f 2422 WHERE is_user AND NOT is_enabled
97a920ef 2423
0b604e9d 2424If a more complex combination is required, testing more conditions,
2425then you should use the and/or operators:-
2426
2427 my %where = (
2428 -and => [
2429 -bool => 'one',
23401b81 2430 -not_bool => { two=> { -rlike => 'bar' } },
2431 -not_bool => { three => [ { '=', 2 }, { '>', 5 } ] },
0b604e9d 2432 ],
2433 );
2434
2435Would give you:
2436
23401b81 2437 WHERE
2438 one
2439 AND
2440 (NOT two RLIKE ?)
2441 AND
2442 (NOT ( three = ? OR three > ? ))
97a920ef 2443
2444
107b72f1 2445=head2 Nested conditions, -and/-or prefixes
96449e8e 2446
32eab2da 2447So far, we've seen how multiple conditions are joined with a top-level
2448C<AND>. We can change this by putting the different conditions we want in
2449hashes and then putting those hashes in an array. For example:
2450
2451 my @where = (
2452 {
2453 user => 'nwiger',
2454 status => { -like => ['pending%', 'dispatched'] },
2455 },
2456 {
2457 user => 'robot',
2458 status => 'unassigned',
2459 }
2460 );
2461
2462This data structure would create the following:
2463
2464 $stmt = "WHERE ( user = ? AND ( status LIKE ? OR status LIKE ? ) )
2465 OR ( user = ? AND status = ? ) )";
2466 @bind = ('nwiger', 'pending', 'dispatched', 'robot', 'unassigned');
2467
107b72f1 2468
48d9f5f8 2469Clauses in hashrefs or arrayrefs can be prefixed with an C<-and> or C<-or>
be21dde3 2470to change the logic inside:
32eab2da 2471
2472 my @where = (
2473 -and => [
2474 user => 'nwiger',
48d9f5f8 2475 [
2476 -and => [ workhrs => {'>', 20}, geo => 'ASIA' ],
2477 -or => { workhrs => {'<', 50}, geo => 'EURO' },
32eab2da 2478 ],
2479 ],
2480 );
2481
2482That would yield:
2483
13cc86af 2484 $stmt = "WHERE ( user = ?
2485 AND ( ( workhrs > ? AND geo = ? )
2486 OR ( workhrs < ? OR geo = ? ) ) )";
2487 @bind = ('nwiger', '20', 'ASIA', '50', 'EURO');
107b72f1 2488
cc422895 2489=head3 Algebraic inconsistency, for historical reasons
107b72f1 2490
7cac25e6 2491C<Important note>: when connecting several conditions, the C<-and->|C<-or>
2492operator goes C<outside> of the nested structure; whereas when connecting
2493several constraints on one column, the C<-and> operator goes
be21dde3 2494C<inside> the arrayref. Here is an example combining both features:
7cac25e6 2495
2496 my @where = (
2497 -and => [a => 1, b => 2],
2498 -or => [c => 3, d => 4],
2499 e => [-and => {-like => 'foo%'}, {-like => '%bar'} ]
2500 )
2501
2502yielding
2503
9d48860e 2504 WHERE ( ( ( a = ? AND b = ? )
2505 OR ( c = ? OR d = ? )
7cac25e6 2506 OR ( e LIKE ? AND e LIKE ? ) ) )
2507
107b72f1 2508This difference in syntax is unfortunate but must be preserved for
be21dde3 2509historical reasons. So be careful: the two examples below would
107b72f1 2510seem algebraically equivalent, but they are not
2511
a948b1fe 2512 { col => [ -and =>
2513 { -like => 'foo%' },
2514 { -like => '%bar' },
2515 ] }
be21dde3 2516 # yields: WHERE ( ( col LIKE ? AND col LIKE ? ) )
107b72f1 2517
a948b1fe 2518 [ -and =>
2519 { col => { -like => 'foo%' } },
2520 { col => { -like => '%bar' } },
2521 ]
be21dde3 2522 # yields: WHERE ( ( col LIKE ? OR col LIKE ? ) )
107b72f1 2523
7cac25e6 2524
cc422895 2525=head2 Literal SQL and value type operators
96449e8e 2526
cc422895 2527The basic premise of SQL::Abstract is that in WHERE specifications the "left
2528side" is a column name and the "right side" is a value (normally rendered as
2529a placeholder). This holds true for both hashrefs and arrayref pairs as you
2530see in the L</WHERE CLAUSES> examples above. Sometimes it is necessary to
2531alter this behavior. There are several ways of doing so.
e9614080 2532
cc422895 2533=head3 -ident
2534
2535This is a virtual operator that signals the string to its right side is an
2536identifier (a column name) and not a value. For example to compare two
2537columns you would write:
32eab2da 2538
e9614080 2539 my %where = (
2540 priority => { '<', 2 },
cc422895 2541 requestor => { -ident => 'submitter' },
e9614080 2542 );
2543
2544which creates:
2545
2546 $stmt = "WHERE priority < ? AND requestor = submitter";
2547 @bind = ('2');
2548
cc422895 2549If you are maintaining legacy code you may see a different construct as
2550described in L</Deprecated usage of Literal SQL>, please use C<-ident> in new
2551code.
2552
2553=head3 -value
e9614080 2554
cc422895 2555This is a virtual operator that signals that the construct to its right side
2556is a value to be passed to DBI. This is for example necessary when you want
2557to write a where clause against an array (for RDBMS that support such
2558datatypes). For example:
e9614080 2559
32eab2da 2560 my %where = (
cc422895 2561 array => { -value => [1, 2, 3] }
32eab2da 2562 );
2563
cc422895 2564will result in:
32eab2da 2565
cc422895 2566 $stmt = 'WHERE array = ?';
2567 @bind = ([1, 2, 3]);
32eab2da 2568
cc422895 2569Note that if you were to simply say:
32eab2da 2570
2571 my %where = (
cc422895 2572 array => [1, 2, 3]
32eab2da 2573 );
2574
3af02ccb 2575the result would probably not be what you wanted:
cc422895 2576
2577 $stmt = 'WHERE array = ? OR array = ? OR array = ?';
2578 @bind = (1, 2, 3);
2579
2580=head3 Literal SQL
96449e8e 2581
cc422895 2582Finally, sometimes only literal SQL will do. To include a random snippet
2583of SQL verbatim, you specify it as a scalar reference. Consider this only
2584as a last resort. Usually there is a better way. For example:
96449e8e 2585
2586 my %where = (
cc422895 2587 priority => { '<', 2 },
2588 requestor => { -in => \'(SELECT name FROM hitmen)' },
96449e8e 2589 );
2590
cc422895 2591Would create:
96449e8e 2592
cc422895 2593 $stmt = "WHERE priority < ? AND requestor IN (SELECT name FROM hitmen)"
2594 @bind = (2);
2595
2596Note that in this example, you only get one bind parameter back, since
2597the verbatim SQL is passed as part of the statement.
2598
2599=head4 CAVEAT
2600
2601 Never use untrusted input as a literal SQL argument - this is a massive
2602 security risk (there is no way to check literal snippets for SQL
2603 injections and other nastyness). If you need to deal with untrusted input
2604 use literal SQL with placeholders as described next.
96449e8e 2605
cc422895 2606=head3 Literal SQL with placeholders and bind values (subqueries)
96449e8e 2607
2608If the literal SQL to be inserted has placeholders and bind values,
2609use a reference to an arrayref (yes this is a double reference --
2610not so common, but perfectly legal Perl). For example, to find a date
2611in Postgres you can use something like this:
2612
2613 my %where = (
3ae1c5e2 2614 date_column => \[ "= date '2008-09-30' - ?::integer", 10 ]
96449e8e 2615 )
2616
2617This would create:
2618
d2a8fe1a 2619 $stmt = "WHERE ( date_column = date '2008-09-30' - ?::integer )"
96449e8e 2620 @bind = ('10');
2621
deb148a2 2622Note that you must pass the bind values in the same format as they are returned
85783f3c 2623by L<where|/where(\%where, $order)>. This means that if you set L</bindtype>
1f490ae4 2624to C<columns>, you must provide the bind values in the
2625C<< [ column_meta => value ] >> format, where C<column_meta> is an opaque
2626scalar value; most commonly the column name, but you can use any scalar value
2627(including references and blessed references), L<SQL::Abstract> will simply
2628pass it through intact. So if C<bindtype> is set to C<columns> the above
2629example will look like:
deb148a2 2630
2631 my %where = (
3ae1c5e2 2632 date_column => \[ "= date '2008-09-30' - ?::integer", [ {} => 10 ] ]
deb148a2 2633 )
96449e8e 2634
2635Literal SQL is especially useful for nesting parenthesized clauses in the
be21dde3 2636main SQL query. Here is a first example:
96449e8e 2637
2638 my ($sub_stmt, @sub_bind) = ("SELECT c1 FROM t1 WHERE c2 < ? AND c3 LIKE ?",
2639 100, "foo%");
2640 my %where = (
2641 foo => 1234,
2642 bar => \["IN ($sub_stmt)" => @sub_bind],
2643 );
2644
be21dde3 2645This yields:
96449e8e 2646
9d48860e 2647 $stmt = "WHERE (foo = ? AND bar IN (SELECT c1 FROM t1
96449e8e 2648 WHERE c2 < ? AND c3 LIKE ?))";
2649 @bind = (1234, 100, "foo%");
2650
9d48860e 2651Other subquery operators, like for example C<"E<gt> ALL"> or C<"NOT IN">,
96449e8e 2652are expressed in the same way. Of course the C<$sub_stmt> and
9d48860e 2653its associated bind values can be generated through a former call
96449e8e 2654to C<select()> :
2655
2656 my ($sub_stmt, @sub_bind)
9d48860e 2657 = $sql->select("t1", "c1", {c2 => {"<" => 100},
96449e8e 2658 c3 => {-like => "foo%"}});
2659 my %where = (
2660 foo => 1234,
2661 bar => \["> ALL ($sub_stmt)" => @sub_bind],
2662 );
2663
2664In the examples above, the subquery was used as an operator on a column;
9d48860e 2665but the same principle also applies for a clause within the main C<%where>
be21dde3 2666hash, like an EXISTS subquery:
96449e8e 2667
9d48860e 2668 my ($sub_stmt, @sub_bind)
96449e8e 2669 = $sql->select("t1", "*", {c1 => 1, c2 => \"> t0.c0"});
48d9f5f8 2670 my %where = ( -and => [
96449e8e 2671 foo => 1234,
48d9f5f8 2672 \["EXISTS ($sub_stmt)" => @sub_bind],
2673 ]);
96449e8e 2674
2675which yields
2676
9d48860e 2677 $stmt = "WHERE (foo = ? AND EXISTS (SELECT * FROM t1
96449e8e 2678 WHERE c1 = ? AND c2 > t0.c0))";
2679 @bind = (1234, 1);
2680
2681
9d48860e 2682Observe that the condition on C<c2> in the subquery refers to
be21dde3 2683column C<t0.c0> of the main query: this is I<not> a bind
9d48860e 2684value, so we have to express it through a scalar ref.
96449e8e 2685Writing C<< c2 => {">" => "t0.c0"} >> would have generated
2686C<< c2 > ? >> with bind value C<"t0.c0"> ... not exactly
2687what we wanted here.
2688
96449e8e 2689Finally, here is an example where a subquery is used
2690for expressing unary negation:
2691
9d48860e 2692 my ($sub_stmt, @sub_bind)
96449e8e 2693 = $sql->where({age => [{"<" => 10}, {">" => 20}]});
2694 $sub_stmt =~ s/^ where //i; # don't want "WHERE" in the subclause
2695 my %where = (
2696 lname => {like => '%son%'},
48d9f5f8 2697 \["NOT ($sub_stmt)" => @sub_bind],
96449e8e 2698 );
2699
2700This yields
2701
2702 $stmt = "lname LIKE ? AND NOT ( age < ? OR age > ? )"
2703 @bind = ('%son%', 10, 20)
2704
cc422895 2705=head3 Deprecated usage of Literal SQL
2706
2707Below are some examples of archaic use of literal SQL. It is shown only as
2708reference for those who deal with legacy code. Each example has a much
2709better, cleaner and safer alternative that users should opt for in new code.
2710
2711=over
2712
2713=item *
2714
2715 my %where = ( requestor => \'IS NOT NULL' )
2716
2717 $stmt = "WHERE requestor IS NOT NULL"
2718
2719This used to be the way of generating NULL comparisons, before the handling
2720of C<undef> got formalized. For new code please use the superior syntax as
2721described in L</Tests for NULL values>.
96449e8e 2722
cc422895 2723=item *
2724
2725 my %where = ( requestor => \'= submitter' )
2726
2727 $stmt = "WHERE requestor = submitter"
2728
2729This used to be the only way to compare columns. Use the superior L</-ident>
2730method for all new code. For example an identifier declared in such a way
2731will be properly quoted if L</quote_char> is properly set, while the legacy
2732form will remain as supplied.
2733
2734=item *
2735
2736 my %where = ( is_ready => \"", completed => { '>', '2012-12-21' } )
2737
2738 $stmt = "WHERE completed > ? AND is_ready"
2739 @bind = ('2012-12-21')
2740
2741Using an empty string literal used to be the only way to express a boolean.
2742For all new code please use the much more readable
2743L<-bool|/Unary operators: bool> operator.
2744
2745=back
96449e8e 2746
2747=head2 Conclusion
2748
32eab2da 2749These pages could go on for a while, since the nesting of the data
2750structures this module can handle are pretty much unlimited (the
2751module implements the C<WHERE> expansion as a recursive function
2752internally). Your best bet is to "play around" with the module a
2753little to see how the data structures behave, and choose the best
2754format for your data based on that.
2755
2756And of course, all the values above will probably be replaced with
2757variables gotten from forms or the command line. After all, if you
2758knew everything ahead of time, you wouldn't have to worry about
2759dynamically-generating SQL and could just hardwire it into your
2760script.
2761
86298391 2762=head1 ORDER BY CLAUSES
2763
9d48860e 2764Some functions take an order by clause. This can either be a scalar (just a
18710f60 2765column name), a hashref of C<< { -desc => 'col' } >> or C<< { -asc => 'col' }
2766>>, a scalarref, an arrayref-ref, or an arrayref of any of the previous
2767forms. Examples:
1cfa1db3 2768
8c15b421 2769 Given | Will Generate
18710f60 2770 ---------------------------------------------------------------
8c15b421 2771 |
2772 'colA' | ORDER BY colA
2773 |
2774 [qw/colA colB/] | ORDER BY colA, colB
2775 |
2776 {-asc => 'colA'} | ORDER BY colA ASC
2777 |
2778 {-desc => 'colB'} | ORDER BY colB DESC
2779 |
2780 ['colA', {-asc => 'colB'}] | ORDER BY colA, colB ASC
2781 |
2782 { -asc => [qw/colA colB/] } | ORDER BY colA ASC, colB ASC
2783 |
2784 \'colA DESC' | ORDER BY colA DESC
2785 |
2786 \[ 'FUNC(colA, ?)', $x ] | ORDER BY FUNC(colA, ?)
2787 | /* ...with $x bound to ? */
2788 |
bd805d85 2789 [ | ORDER BY
2790 { -asc => 'colA' }, | colA ASC,
2791 { -desc => [qw/colB/] }, | colB DESC,
2792 { -asc => [qw/colC colD/] },| colC ASC, colD ASC,
2793 \'colE DESC', | colE DESC,
2794 \[ 'FUNC(colF, ?)', $x ], | FUNC(colF, ?)
2795 ] | /* ...with $x bound to ? */
18710f60 2796 ===============================================================
86298391 2797
96449e8e 2798
2799
2800=head1 SPECIAL OPERATORS
2801
e3f9dff4 2802 my $sqlmaker = SQL::Abstract->new(special_ops => [
3a2e1a5e 2803 {
2804 regex => qr/.../,
e3f9dff4 2805 handler => sub {
2806 my ($self, $field, $op, $arg) = @_;
2807 ...
3a2e1a5e 2808 },
2809 },
2810 {
2811 regex => qr/.../,
2812 handler => 'method_name',
e3f9dff4 2813 },
2814 ]);
2815
9d48860e 2816A "special operator" is a SQL syntactic clause that can be
e3f9dff4 2817applied to a field, instead of a usual binary operator.
be21dde3 2818For example:
e3f9dff4 2819
2820 WHERE field IN (?, ?, ?)
2821 WHERE field BETWEEN ? AND ?
2822 WHERE MATCH(field) AGAINST (?, ?)
96449e8e 2823
e3f9dff4 2824Special operators IN and BETWEEN are fairly standard and therefore
3a2e1a5e 2825are builtin within C<SQL::Abstract> (as the overridable methods
2826C<_where_field_IN> and C<_where_field_BETWEEN>). For other operators,
2827like the MATCH .. AGAINST example above which is specific to MySQL,
2828you can write your own operator handlers - supply a C<special_ops>
2829argument to the C<new> method. That argument takes an arrayref of
2830operator definitions; each operator definition is a hashref with two
2831entries:
96449e8e 2832
e3f9dff4 2833=over
2834
2835=item regex
2836
2837the regular expression to match the operator
96449e8e 2838
e3f9dff4 2839=item handler
2840
3a2e1a5e 2841Either a coderef or a plain scalar method name. In both cases
2842the expected return is C<< ($sql, @bind) >>.
2843
2844When supplied with a method name, it is simply called on the
13cc86af 2845L<SQL::Abstract> object as:
3a2e1a5e 2846
ca4f826a 2847 $self->$method_name($field, $op, $arg)
3a2e1a5e 2848
2849 Where:
2850
3a2e1a5e 2851 $field is the LHS of the operator
13cc86af 2852 $op is the part that matched the handler regex
3a2e1a5e 2853 $arg is the RHS
2854
2855When supplied with a coderef, it is called as:
2856
2857 $coderef->($self, $field, $op, $arg)
2858
e3f9dff4 2859
2860=back
2861
9d48860e 2862For example, here is an implementation
e3f9dff4 2863of the MATCH .. AGAINST syntax for MySQL
2864
2865 my $sqlmaker = SQL::Abstract->new(special_ops => [
9d48860e 2866
e3f9dff4 2867 # special op for MySql MATCH (field) AGAINST(word1, word2, ...)
9d48860e 2868 {regex => qr/^match$/i,
e3f9dff4 2869 handler => sub {
2870 my ($self, $field, $op, $arg) = @_;
2871 $arg = [$arg] if not ref $arg;
2872 my $label = $self->_quote($field);
2873 my ($placeholder) = $self->_convert('?');
2874 my $placeholders = join ", ", (($placeholder) x @$arg);
2875 my $sql = $self->_sqlcase('match') . " ($label) "
2876 . $self->_sqlcase('against') . " ($placeholders) ";
2877 my @bind = $self->_bindtype($field, @$arg);
2878 return ($sql, @bind);
2879 }
2880 },
9d48860e 2881
e3f9dff4 2882 ]);
96449e8e 2883
2884
59f23b3d 2885=head1 UNARY OPERATORS
2886
112b5232 2887 my $sqlmaker = SQL::Abstract->new(unary_ops => [
59f23b3d 2888 {
2889 regex => qr/.../,
2890 handler => sub {
2891 my ($self, $op, $arg) = @_;
2892 ...
2893 },
2894 },
2895 {
2896 regex => qr/.../,
2897 handler => 'method_name',
2898 },
2899 ]);
2900
9d48860e 2901A "unary operator" is a SQL syntactic clause that can be
59f23b3d 2902applied to a field - the operator goes before the field
2903
2904You can write your own operator handlers - supply a C<unary_ops>
2905argument to the C<new> method. That argument takes an arrayref of
2906operator definitions; each operator definition is a hashref with two
2907entries:
2908
2909=over
2910
2911=item regex
2912
2913the regular expression to match the operator
2914
2915=item handler
2916
2917Either a coderef or a plain scalar method name. In both cases
2918the expected return is C<< $sql >>.
2919
2920When supplied with a method name, it is simply called on the
13cc86af 2921L<SQL::Abstract> object as:
59f23b3d 2922
ca4f826a 2923 $self->$method_name($op, $arg)
59f23b3d 2924
2925 Where:
2926
2927 $op is the part that matched the handler regex
2928 $arg is the RHS or argument of the operator
2929
2930When supplied with a coderef, it is called as:
2931
2932 $coderef->($self, $op, $arg)
2933
2934
2935=back
2936
2937
32eab2da 2938=head1 PERFORMANCE
2939
2940Thanks to some benchmarking by Mark Stosberg, it turns out that
2941this module is many orders of magnitude faster than using C<DBIx::Abstract>.
2942I must admit this wasn't an intentional design issue, but it's a
2943byproduct of the fact that you get to control your C<DBI> handles
2944yourself.
2945
2946To maximize performance, use a code snippet like the following:
2947
2948 # prepare a statement handle using the first row
2949 # and then reuse it for the rest of the rows
2950 my($sth, $stmt);
2951 for my $href (@array_of_hashrefs) {
2952 $stmt ||= $sql->insert('table', $href);
2953 $sth ||= $dbh->prepare($stmt);
2954 $sth->execute($sql->values($href));
2955 }
2956
2957The reason this works is because the keys in your C<$href> are sorted
2958internally by B<SQL::Abstract>. Thus, as long as your data retains
2959the same structure, you only have to generate the SQL the first time
2960around. On subsequent queries, simply use the C<values> function provided
2961by this module to return your values in the correct order.
2962
b864ba9b 2963However this depends on the values having the same type - if, for
2964example, the values of a where clause may either have values
2965(resulting in sql of the form C<column = ?> with a single bind
2966value), or alternatively the values might be C<undef> (resulting in
2967sql of the form C<column IS NULL> with no bind value) then the
2968caching technique suggested will not work.
96449e8e 2969
32eab2da 2970=head1 FORMBUILDER
2971
2972If you use my C<CGI::FormBuilder> module at all, you'll hopefully
2973really like this part (I do, at least). Building up a complex query
2974can be as simple as the following:
2975
2976 #!/usr/bin/perl
2977
46dc2f3e 2978 use warnings;
2979 use strict;
2980
32eab2da 2981 use CGI::FormBuilder;
2982 use SQL::Abstract;
2983
2984 my $form = CGI::FormBuilder->new(...);
2985 my $sql = SQL::Abstract->new;
2986
2987 if ($form->submitted) {
2988 my $field = $form->field;
2989 my $id = delete $field->{id};
2990 my($stmt, @bind) = $sql->update('table', $field, {id => $id});
2991 }
2992
2993Of course, you would still have to connect using C<DBI> to run the
2994query, but the point is that if you make your form look like your
2995table, the actual query script can be extremely simplistic.
2996
2997If you're B<REALLY> lazy (I am), check out C<HTML::QuickTable> for
9d48860e 2998a fast interface to returning and formatting data. I frequently
32eab2da 2999use these three modules together to write complex database query
3000apps in under 50 lines.
3001
af733667 3002=head1 HOW TO CONTRIBUTE
3003
3004Contributions are always welcome, in all usable forms (we especially
3005welcome documentation improvements). The delivery methods include git-
3006or unified-diff formatted patches, GitHub pull requests, or plain bug
3007reports either via RT or the Mailing list. Contributors are generally
3008granted full access to the official repository after their first several
3009patches pass successful review.
3010
3011This project is maintained in a git repository. The code and related tools are
3012accessible at the following locations:
d8cc1792 3013
3014=over
3015
af733667 3016=item * Official repo: L<git://git.shadowcat.co.uk/dbsrgits/SQL-Abstract.git>
3017
3018=item * Official gitweb: L<http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits/SQL-Abstract.git>
3019
3020=item * GitHub mirror: L<https://github.com/dbsrgits/sql-abstract>
d8cc1792 3021
af733667 3022=item * Authorized committers: L<ssh://dbsrgits@git.shadowcat.co.uk/SQL-Abstract.git>
d8cc1792 3023
3024=back
32eab2da 3025
96449e8e 3026=head1 CHANGES
3027
3028Version 1.50 was a major internal refactoring of C<SQL::Abstract>.
3029Great care has been taken to preserve the I<published> behavior
3030documented in previous versions in the 1.* family; however,
9d48860e 3031some features that were previously undocumented, or behaved
96449e8e 3032differently from the documentation, had to be changed in order
3033to clarify the semantics. Hence, client code that was relying
9d48860e 3034on some dark areas of C<SQL::Abstract> v1.*
96449e8e 3035B<might behave differently> in v1.50.
32eab2da 3036
be21dde3 3037The main changes are:
d2a8fe1a 3038
96449e8e 3039=over
32eab2da 3040
9d48860e 3041=item *
32eab2da 3042
3ae1c5e2 3043support for literal SQL through the C<< \ [ $sql, @bind ] >> syntax.
96449e8e 3044
3045=item *
3046
145fbfc8 3047support for the { operator => \"..." } construct (to embed literal SQL)
3048
3049=item *
3050
9c37b9c0 3051support for the { operator => \["...", @bind] } construct (to embed literal SQL with bind values)
3052
3053=item *
3054
96449e8e 3055optional support for L<array datatypes|/"Inserting and Updating Arrays">
3056
9d48860e 3057=item *
96449e8e 3058
be21dde3 3059defensive programming: check arguments
96449e8e 3060
3061=item *
3062
3063fixed bug with global logic, which was previously implemented
7cac25e6 3064through global variables yielding side-effects. Prior versions would
96449e8e 3065interpret C<< [ {cond1, cond2}, [cond3, cond4] ] >>
3066as C<< "(cond1 AND cond2) OR (cond3 AND cond4)" >>.
3067Now this is interpreted
3068as C<< "(cond1 AND cond2) OR (cond3 OR cond4)" >>.
3069
96449e8e 3070
3071=item *
3072
3073fixed semantics of _bindtype on array args
3074
9d48860e 3075=item *
96449e8e 3076
3077dropped the C<_anoncopy> of the %where tree. No longer necessary,
3078we just avoid shifting arrays within that tree.
3079
3080=item *
3081
3082dropped the C<_modlogic> function
3083
3084=back
32eab2da 3085
32eab2da 3086=head1 ACKNOWLEDGEMENTS
3087
3088There are a number of individuals that have really helped out with
3089this module. Unfortunately, most of them submitted bugs via CPAN
3090so I have no idea who they are! But the people I do know are:
3091
9d48860e 3092 Ash Berlin (order_by hash term support)
b643abe1 3093 Matt Trout (DBIx::Class support)
32eab2da 3094 Mark Stosberg (benchmarking)
3095 Chas Owens (initial "IN" operator support)
3096 Philip Collins (per-field SQL functions)
3097 Eric Kolve (hashref "AND" support)
3098 Mike Fragassi (enhancements to "BETWEEN" and "LIKE")
3099 Dan Kubb (support for "quote_char" and "name_sep")
f5aab26e 3100 Guillermo Roditi (patch to cleanup "IN" and "BETWEEN", fix and tests for _order_by)
48d9f5f8 3101 Laurent Dami (internal refactoring, extensible list of special operators, literal SQL)
dbdf7648 3102 Norbert Buchmuller (support for literal SQL in hashpair, misc. fixes & tests)
e96c510a 3103 Peter Rabbitson (rewrite of SQLA::Test, misc. fixes & tests)
02288357 3104 Oliver Charles (support for "RETURNING" after "INSERT")
32eab2da 3105
3106Thanks!
3107
32eab2da 3108=head1 SEE ALSO
3109
86298391 3110L<DBIx::Class>, L<DBIx::Abstract>, L<CGI::FormBuilder>, L<HTML::QuickTable>.
32eab2da 3111
32eab2da 3112=head1 AUTHOR
3113
b643abe1 3114Copyright (c) 2001-2007 Nathan Wiger <nwiger@cpan.org>. All Rights Reserved.
3115
3116This module is actively maintained by Matt Trout <mst@shadowcatsystems.co.uk>
32eab2da 3117
abe72f94 3118For support, your best bet is to try the C<DBIx::Class> users mailing list.
3119While not an official support venue, C<DBIx::Class> makes heavy use of
3120C<SQL::Abstract>, and as such list members there are very familiar with
3121how to create queries.
3122
0d067ded 3123=head1 LICENSE
3124
d988ab87 3125This module is free software; you may copy this under the same
3126terms as perl itself (either the GNU General Public License or
3127the Artistic License)
32eab2da 3128
3129=cut