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