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