murder the old _convert system
[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     @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->format_keyword($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                 : $self->format_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   my @final = map +(
1545     ref($_) eq 'HASH'
1546       ? $self->render_aqt($_)
1547       : ((ref($_) eq 'ARRAY') ? $_ : [ $_ ])
1548   ), @parts;
1549   return [
1550     $self->{join_sql_parts}->(
1551       $join, grep defined && length, map $_->[0], @final
1552     ),
1553     (map @{$_}[1..$#$_], @final),
1554   ];
1555 }
1556
1557 sub _render_unop_paren {
1558   my ($self, $op, $v) = @_;
1559   return $self->join_query_parts('',
1560     '(', $self->_render_unop_prefix($op, $v), ')'
1561   );
1562 }
1563
1564 sub _render_unop_prefix {
1565   my ($self, $op, $v) = @_;
1566   return $self->join_query_parts(' ',
1567     $self->_sqlcase($op), $v->[0]
1568   );
1569 }
1570
1571 sub _render_unop_postfix {
1572   my ($self, $op, $v) = @_;
1573   return $self->join_query_parts(' ',
1574     $v->[0], { -keyword => $op },
1575   );
1576 }
1577
1578 # Some databases (SQLite) treat col IN (1, 2) different from
1579 # col IN ( (1, 2) ). Use this to strip all outer parens while
1580 # adding them back in the corresponding method
1581 sub _open_outer_paren {
1582   my ($self, $sql) = @_;
1583
1584   while (my ($inner) = $sql =~ /^ \s* \( (.*) \) \s* $/xs) {
1585
1586     # there are closing parens inside, need the heavy duty machinery
1587     # to reevaluate the extraction starting from $sql (full reevaluation)
1588     if ($inner =~ /\)/) {
1589       require Text::Balanced;
1590
1591       my (undef, $remainder) = do {
1592         # idiotic design - writes to $@ but *DOES NOT* throw exceptions
1593         local $@;
1594         Text::Balanced::extract_bracketed($sql, '()', qr/\s*/);
1595       };
1596
1597       # the entire expression needs to be a balanced bracketed thing
1598       # (after an extract no remainder sans trailing space)
1599       last if defined $remainder and $remainder =~ /\S/;
1600     }
1601
1602     $sql = $inner;
1603   }
1604
1605   $sql;
1606 }
1607
1608
1609 #======================================================================
1610 # ORDER BY
1611 #======================================================================
1612
1613 sub _expand_order_by {
1614   my ($self, $arg) = @_;
1615
1616   return unless defined($arg) and not (ref($arg) eq 'ARRAY' and !@$arg);
1617
1618   return $self->expand_maybe_list_expr($arg)
1619     if ref($arg) eq 'HASH' and ($arg->{-op}||[''])->[0] eq ',';
1620
1621   my $expander = sub {
1622     my ($self, $dir, $expr) = @_;
1623     my @to_expand = ref($expr) eq 'ARRAY' ? @$expr : $expr;
1624     foreach my $arg (@to_expand) {
1625       if (
1626         ref($arg) eq 'HASH'
1627         and keys %$arg > 1
1628         and grep /^-(asc|desc)$/, keys %$arg
1629       ) {
1630         puke "ordering direction hash passed to order by must have exactly one key (-asc or -desc)";
1631       }
1632     }
1633     my @exp = map +(
1634                 defined($dir) ? { -op => [ $dir =~ /^-?(.*)$/ ,=> $_ ] } : $_
1635               ),
1636                 map $self->expand_expr($_, -ident),
1637                 map ref($_) eq 'ARRAY' ? @$_ : $_, @to_expand;
1638     return undef unless @exp;
1639     return undef if @exp == 1 and not defined($exp[0]);
1640     return +{ -op => [ ',', @exp ] };
1641   };
1642
1643   local @{$self->{expand}}{qw(asc desc)} = (($expander) x 2);
1644
1645   return $self->$expander(undef, $arg);
1646 }
1647
1648 sub _order_by {
1649   my ($self, $arg) = @_;
1650
1651   return '' unless defined(my $expanded = $self->_expand_order_by($arg));
1652
1653   my ($sql, @bind) = @{ $self->render_aqt($expanded) };
1654
1655   return '' unless length($sql);
1656
1657   my $final_sql = $self->_sqlcase(' order by ').$sql;
1658
1659   return ($final_sql, @bind);
1660 }
1661
1662 # _order_by no longer needs to call this so doesn't but DBIC uses it.
1663
1664 sub _order_by_chunks {
1665   my ($self, $arg) = @_;
1666
1667   return () unless defined(my $expanded = $self->_expand_order_by($arg));
1668
1669   my @res = $self->_chunkify_order_by($expanded);
1670   (ref() ? $_->[0] : $_) .= '' for @res;
1671   return @res;
1672 }
1673
1674 sub _chunkify_order_by {
1675   my ($self, $expanded) = @_;
1676
1677   return grep length, @{ $self->render_aqt($expanded) }
1678     if $expanded->{-ident} or @{$expanded->{-literal}||[]} == 1;
1679
1680   for ($expanded) {
1681     if (ref() eq 'HASH' and $_->{-op} and $_->{-op}[0] eq ',') {
1682       my ($comma, @list) = @{$_->{-op}};
1683       return map $self->_chunkify_order_by($_), @list;
1684     }
1685     return $self->render_aqt($_);
1686   }
1687 }
1688
1689 #======================================================================
1690 # DATASOURCE (FOR NOW, JUST PLAIN TABLE OR LIST OF TABLES)
1691 #======================================================================
1692
1693 sub _table  {
1694   my $self = shift;
1695   my $from = shift;
1696   $self->render_aqt(
1697     $self->expand_maybe_list_expr($from, -ident)
1698   )->[0];
1699 }
1700
1701
1702 #======================================================================
1703 # UTILITY FUNCTIONS
1704 #======================================================================
1705
1706 sub expand_maybe_list_expr {
1707   my ($self, $expr, $default) = @_;
1708   return { -op => [
1709     ',', map $self->expand_expr($_, $default), 
1710           @{$expr->{-op}}[1..$#{$expr->{-op}}]
1711   ] } if ref($expr) eq 'HASH' and ($expr->{-op}||[''])->[0] eq ',';
1712   return +{ -op => [ ',',
1713     map $self->expand_expr($_, $default),
1714       ref($expr) eq 'ARRAY' ? @$expr : $expr
1715   ] };
1716 }
1717
1718 # highly optimized, as it's called way too often
1719 sub _quote {
1720   # my ($self, $label) = @_;
1721
1722   return '' unless defined $_[1];
1723   return ${$_[1]} if ref($_[1]) eq 'SCALAR';
1724   puke 'Identifier cannot be hashref' if ref($_[1]) eq 'HASH';
1725
1726   unless ($_[0]->{quote_char}) {
1727     if (ref($_[1]) eq 'ARRAY') {
1728       return join($_[0]->{name_sep}||'.', @{$_[1]});
1729     } else {
1730       $_[0]->_assert_pass_injection_guard($_[1]);
1731       return $_[1];
1732     }
1733   }
1734
1735   my $qref = ref $_[0]->{quote_char};
1736   my ($l, $r) =
1737       !$qref             ? ($_[0]->{quote_char}, $_[0]->{quote_char})
1738     : ($qref eq 'ARRAY') ? @{$_[0]->{quote_char}}
1739     : puke "Unsupported quote_char format: $_[0]->{quote_char}";
1740
1741   my $esc = $_[0]->{escape_char} || $r;
1742
1743   # parts containing * are naturally unquoted
1744   return join(
1745     $_[0]->{name_sep}||'',
1746     map +(
1747       $_ eq '*'
1748         ? $_
1749         : do { (my $n = $_) =~ s/(\Q$esc\E|\Q$r\E)/$esc$1/g; $l . $n . $r }
1750     ),
1751     (ref($_[1]) eq 'ARRAY'
1752       ? @{$_[1]}
1753       : (
1754           $_[0]->{name_sep}
1755             ? split (/\Q$_[0]->{name_sep}\E/, $_[1] )
1756             : $_[1]
1757         )
1758     )
1759   );
1760 }
1761
1762
1763 # Conversion, if applicable
1764 sub _convert {
1765   #my ($self, $arg) = @_;
1766   if (my $conv = $_[0]->{convert_where}) {
1767     return @{ $_[0]->join_query_parts('',
1768       $_[0]->format_keyword($conv),
1769       '(' , $_[1] , ')'
1770     ) };
1771   }
1772   return $_[1];
1773 }
1774
1775 # And bindtype
1776 sub _bindtype {
1777   #my ($self, $col, @vals) = @_;
1778   # called often - tighten code
1779   return $_[0]->{bindtype} eq 'columns'
1780     ? map {[$_[1], $_]} @_[2 .. $#_]
1781     : @_[2 .. $#_]
1782   ;
1783 }
1784
1785 # Dies if any element of @bind is not in [colname => value] format
1786 # if bindtype is 'columns'.
1787 sub _assert_bindval_matches_bindtype {
1788 #  my ($self, @bind) = @_;
1789   my $self = shift;
1790   if ($self->{bindtype} eq 'columns') {
1791     for (@_) {
1792       if (!defined $_ || ref($_) ne 'ARRAY' || @$_ != 2) {
1793         puke "bindtype 'columns' selected, you need to pass: [column_name => bind_value]"
1794       }
1795     }
1796   }
1797 }
1798
1799 sub _join_sql_clauses {
1800   my ($self, $logic, $clauses_aref, $bind_aref) = @_;
1801
1802   if (@$clauses_aref > 1) {
1803     my $join  = " " . $self->_sqlcase($logic) . " ";
1804     my $sql = '( ' . join($join, @$clauses_aref) . ' )';
1805     return ($sql, @$bind_aref);
1806   }
1807   elsif (@$clauses_aref) {
1808     return ($clauses_aref->[0], @$bind_aref); # no parentheses
1809   }
1810   else {
1811     return (); # if no SQL, ignore @$bind_aref
1812   }
1813 }
1814
1815
1816 # Fix SQL case, if so requested
1817 sub _sqlcase {
1818   # LDNOTE: if $self->{case} is true, then it contains 'lower', so we
1819   # don't touch the argument ... crooked logic, but let's not change it!
1820   return $_[0]->{case} ? $_[1] : uc($_[1]);
1821 }
1822
1823 sub format_keyword { $_[0]->_sqlcase(join ' ', split '_', $_[1]) }
1824
1825 #======================================================================
1826 # DISPATCHING FROM REFKIND
1827 #======================================================================
1828
1829 sub _refkind {
1830   my ($self, $data) = @_;
1831
1832   return 'UNDEF' unless defined $data;
1833
1834   # blessed objects are treated like scalars
1835   my $ref = (Scalar::Util::blessed $data) ? '' : ref $data;
1836
1837   return 'SCALAR' unless $ref;
1838
1839   my $n_steps = 1;
1840   while ($ref eq 'REF') {
1841     $data = $$data;
1842     $ref = (Scalar::Util::blessed $data) ? '' : ref $data;
1843     $n_steps++ if $ref;
1844   }
1845
1846   return ($ref||'SCALAR') . ('REF' x $n_steps);
1847 }
1848
1849 sub _try_refkind {
1850   my ($self, $data) = @_;
1851   my @try = ($self->_refkind($data));
1852   push @try, 'SCALAR_or_UNDEF' if $try[0] eq 'SCALAR' || $try[0] eq 'UNDEF';
1853   push @try, 'FALLBACK';
1854   return \@try;
1855 }
1856
1857 sub _METHOD_FOR_refkind {
1858   my ($self, $meth_prefix, $data) = @_;
1859
1860   my $method;
1861   for (@{$self->_try_refkind($data)}) {
1862     $method = $self->can($meth_prefix."_".$_)
1863       and last;
1864   }
1865
1866   return $method || puke "cannot dispatch on '$meth_prefix' for ".$self->_refkind($data);
1867 }
1868
1869
1870 sub _SWITCH_refkind {
1871   my ($self, $data, $dispatch_table) = @_;
1872
1873   my $coderef;
1874   for (@{$self->_try_refkind($data)}) {
1875     $coderef = $dispatch_table->{$_}
1876       and last;
1877   }
1878
1879   puke "no dispatch entry for ".$self->_refkind($data)
1880     unless $coderef;
1881
1882   $coderef->();
1883 }
1884
1885
1886
1887
1888 #======================================================================
1889 # VALUES, GENERATE, AUTOLOAD
1890 #======================================================================
1891
1892 # LDNOTE: original code from nwiger, didn't touch code in that section
1893 # I feel the AUTOLOAD stuff should not be the default, it should
1894 # only be activated on explicit demand by user.
1895
1896 sub values {
1897     my $self = shift;
1898     my $data = shift || return;
1899     puke "Argument to ", __PACKAGE__, "->values must be a \\%hash"
1900         unless ref $data eq 'HASH';
1901
1902     my @all_bind;
1903     foreach my $k (sort keys %$data) {
1904         my $v = $data->{$k};
1905         $self->_SWITCH_refkind($v, {
1906           ARRAYREF => sub {
1907             if ($self->{array_datatypes}) { # array datatype
1908               push @all_bind, $self->_bindtype($k, $v);
1909             }
1910             else {                          # literal SQL with bind
1911               my ($sql, @bind) = @$v;
1912               $self->_assert_bindval_matches_bindtype(@bind);
1913               push @all_bind, @bind;
1914             }
1915           },
1916           ARRAYREFREF => sub { # literal SQL with bind
1917             my ($sql, @bind) = @${$v};
1918             $self->_assert_bindval_matches_bindtype(@bind);
1919             push @all_bind, @bind;
1920           },
1921           SCALARREF => sub {  # literal SQL without bind
1922           },
1923           SCALAR_or_UNDEF => sub {
1924             push @all_bind, $self->_bindtype($k, $v);
1925           },
1926         });
1927     }
1928
1929     return @all_bind;
1930 }
1931
1932 sub generate {
1933     my $self  = shift;
1934
1935     my(@sql, @sqlq, @sqlv);
1936
1937     for (@_) {
1938         my $ref = ref $_;
1939         if ($ref eq 'HASH') {
1940             for my $k (sort keys %$_) {
1941                 my $v = $_->{$k};
1942                 my $r = ref $v;
1943                 my $label = $self->_quote($k);
1944                 if ($r eq 'ARRAY') {
1945                     # literal SQL with bind
1946                     my ($sql, @bind) = @$v;
1947                     $self->_assert_bindval_matches_bindtype(@bind);
1948                     push @sqlq, "$label = $sql";
1949                     push @sqlv, @bind;
1950                 } elsif ($r eq 'SCALAR') {
1951                     # literal SQL without bind
1952                     push @sqlq, "$label = $$v";
1953                 } else {
1954                     push @sqlq, "$label = ?";
1955                     push @sqlv, $self->_bindtype($k, $v);
1956                 }
1957             }
1958             push @sql, $self->_sqlcase('set'), join ', ', @sqlq;
1959         } elsif ($ref eq 'ARRAY') {
1960             # unlike insert(), assume these are ONLY the column names, i.e. for SQL
1961             for my $v (@$_) {
1962                 my $r = ref $v;
1963                 if ($r eq 'ARRAY') {   # literal SQL with bind
1964                     my ($sql, @bind) = @$v;
1965                     $self->_assert_bindval_matches_bindtype(@bind);
1966                     push @sqlq, $sql;
1967                     push @sqlv, @bind;
1968                 } elsif ($r eq 'SCALAR') {  # literal SQL without bind
1969                     # embedded literal SQL
1970                     push @sqlq, $$v;
1971                 } else {
1972                     push @sqlq, '?';
1973                     push @sqlv, $v;
1974                 }
1975             }
1976             push @sql, '(' . join(', ', @sqlq) . ')';
1977         } elsif ($ref eq 'SCALAR') {
1978             # literal SQL
1979             push @sql, $$_;
1980         } else {
1981             # strings get case twiddled
1982             push @sql, $self->_sqlcase($_);
1983         }
1984     }
1985
1986     my $sql = join ' ', @sql;
1987
1988     # this is pretty tricky
1989     # if ask for an array, return ($stmt, @bind)
1990     # otherwise, s/?/shift @sqlv/ to put it inline
1991     if (wantarray) {
1992         return ($sql, @sqlv);
1993     } else {
1994         1 while $sql =~ s/\?/my $d = shift(@sqlv);
1995                              ref $d ? $d->[1] : $d/e;
1996         return $sql;
1997     }
1998 }
1999
2000
2001 sub DESTROY { 1 }
2002
2003 sub AUTOLOAD {
2004     # This allows us to check for a local, then _form, attr
2005     my $self = shift;
2006     my($name) = $AUTOLOAD =~ /.*::(.+)/;
2007     puke "AUTOLOAD invoked for method name ${name} and allow_autoload option not set" unless $self->{allow_autoload};
2008     return $self->generate($name, @_);
2009 }
2010
2011 1;
2012
2013
2014
2015 __END__
2016
2017 =head1 NAME
2018
2019 SQL::Abstract - Generate SQL from Perl data structures
2020
2021 =head1 SYNOPSIS
2022
2023     use SQL::Abstract;
2024
2025     my $sql = SQL::Abstract->new;
2026
2027     my($stmt, @bind) = $sql->select($source, \@fields, \%where, $order);
2028
2029     my($stmt, @bind) = $sql->insert($table, \%fieldvals || \@values);
2030
2031     my($stmt, @bind) = $sql->update($table, \%fieldvals, \%where);
2032
2033     my($stmt, @bind) = $sql->delete($table, \%where);
2034
2035     # Then, use these in your DBI statements
2036     my $sth = $dbh->prepare($stmt);
2037     $sth->execute(@bind);
2038
2039     # Just generate the WHERE clause
2040     my($stmt, @bind) = $sql->where(\%where, $order);
2041
2042     # Return values in the same order, for hashed queries
2043     # See PERFORMANCE section for more details
2044     my @bind = $sql->values(\%fieldvals);
2045
2046 =head1 DESCRIPTION
2047
2048 This module was inspired by the excellent L<DBIx::Abstract>.
2049 However, in using that module I found that what I really wanted
2050 to do was generate SQL, but still retain complete control over my
2051 statement handles and use the DBI interface. So, I set out to
2052 create an abstract SQL generation module.
2053
2054 While based on the concepts used by L<DBIx::Abstract>, there are
2055 several important differences, especially when it comes to WHERE
2056 clauses. I have modified the concepts used to make the SQL easier
2057 to generate from Perl data structures and, IMO, more intuitive.
2058 The underlying idea is for this module to do what you mean, based
2059 on the data structures you provide it. The big advantage is that
2060 you don't have to modify your code every time your data changes,
2061 as this module figures it out.
2062
2063 To begin with, an SQL INSERT is as easy as just specifying a hash
2064 of C<key=value> pairs:
2065
2066     my %data = (
2067         name => 'Jimbo Bobson',
2068         phone => '123-456-7890',
2069         address => '42 Sister Lane',
2070         city => 'St. Louis',
2071         state => 'Louisiana',
2072     );
2073
2074 The SQL can then be generated with this:
2075
2076     my($stmt, @bind) = $sql->insert('people', \%data);
2077
2078 Which would give you something like this:
2079
2080     $stmt = "INSERT INTO people
2081                     (address, city, name, phone, state)
2082                     VALUES (?, ?, ?, ?, ?)";
2083     @bind = ('42 Sister Lane', 'St. Louis', 'Jimbo Bobson',
2084              '123-456-7890', 'Louisiana');
2085
2086 These are then used directly in your DBI code:
2087
2088     my $sth = $dbh->prepare($stmt);
2089     $sth->execute(@bind);
2090
2091 =head2 Inserting and Updating Arrays
2092
2093 If your database has array types (like for example Postgres),
2094 activate the special option C<< array_datatypes => 1 >>
2095 when creating the C<SQL::Abstract> object.
2096 Then you may use an arrayref to insert and update database array types:
2097
2098     my $sql = SQL::Abstract->new(array_datatypes => 1);
2099     my %data = (
2100         planets => [qw/Mercury Venus Earth Mars/]
2101     );
2102
2103     my($stmt, @bind) = $sql->insert('solar_system', \%data);
2104
2105 This results in:
2106
2107     $stmt = "INSERT INTO solar_system (planets) VALUES (?)"
2108
2109     @bind = (['Mercury', 'Venus', 'Earth', 'Mars']);
2110
2111
2112 =head2 Inserting and Updating SQL
2113
2114 In order to apply SQL functions to elements of your C<%data> you may
2115 specify a reference to an arrayref for the given hash value. For example,
2116 if you need to execute the Oracle C<to_date> function on a value, you can
2117 say something like this:
2118
2119     my %data = (
2120         name => 'Bill',
2121         date_entered => \[ "to_date(?,'MM/DD/YYYY')", "03/02/2003" ],
2122     );
2123
2124 The first value in the array is the actual SQL. Any other values are
2125 optional and would be included in the bind values array. This gives
2126 you:
2127
2128     my($stmt, @bind) = $sql->insert('people', \%data);
2129
2130     $stmt = "INSERT INTO people (name, date_entered)
2131                 VALUES (?, to_date(?,'MM/DD/YYYY'))";
2132     @bind = ('Bill', '03/02/2003');
2133
2134 An UPDATE is just as easy, all you change is the name of the function:
2135
2136     my($stmt, @bind) = $sql->update('people', \%data);
2137
2138 Notice that your C<%data> isn't touched; the module will generate
2139 the appropriately quirky SQL for you automatically. Usually you'll
2140 want to specify a WHERE clause for your UPDATE, though, which is
2141 where handling C<%where> hashes comes in handy...
2142
2143 =head2 Complex where statements
2144
2145 This module can generate pretty complicated WHERE statements
2146 easily. For example, simple C<key=value> pairs are taken to mean
2147 equality, and if you want to see if a field is within a set
2148 of values, you can use an arrayref. Let's say we wanted to
2149 SELECT some data based on this criteria:
2150
2151     my %where = (
2152        requestor => 'inna',
2153        worker => ['nwiger', 'rcwe', 'sfz'],
2154        status => { '!=', 'completed' }
2155     );
2156
2157     my($stmt, @bind) = $sql->select('tickets', '*', \%where);
2158
2159 The above would give you something like this:
2160
2161     $stmt = "SELECT * FROM tickets WHERE
2162                 ( requestor = ? ) AND ( status != ? )
2163                 AND ( worker = ? OR worker = ? OR worker = ? )";
2164     @bind = ('inna', 'completed', 'nwiger', 'rcwe', 'sfz');
2165
2166 Which you could then use in DBI code like so:
2167
2168     my $sth = $dbh->prepare($stmt);
2169     $sth->execute(@bind);
2170
2171 Easy, eh?
2172
2173 =head1 METHODS
2174
2175 The methods are simple. There's one for every major SQL operation,
2176 and a constructor you use first. The arguments are specified in a
2177 similar order for each method (table, then fields, then a where
2178 clause) to try and simplify things.
2179
2180 =head2 new(option => 'value')
2181
2182 The C<new()> function takes a list of options and values, and returns
2183 a new B<SQL::Abstract> object which can then be used to generate SQL
2184 through the methods below. The options accepted are:
2185
2186 =over
2187
2188 =item case
2189
2190 If set to 'lower', then SQL will be generated in all lowercase. By
2191 default SQL is generated in "textbook" case meaning something like:
2192
2193     SELECT a_field FROM a_table WHERE some_field LIKE '%someval%'
2194
2195 Any setting other than 'lower' is ignored.
2196
2197 =item cmp
2198
2199 This determines what the default comparison operator is. By default
2200 it is C<=>, meaning that a hash like this:
2201
2202     %where = (name => 'nwiger', email => 'nate@wiger.org');
2203
2204 Will generate SQL like this:
2205
2206     WHERE name = 'nwiger' AND email = 'nate@wiger.org'
2207
2208 However, you may want loose comparisons by default, so if you set
2209 C<cmp> to C<like> you would get SQL such as:
2210
2211     WHERE name like 'nwiger' AND email like 'nate@wiger.org'
2212
2213 You can also override the comparison on an individual basis - see
2214 the huge section on L</"WHERE CLAUSES"> at the bottom.
2215
2216 =item sqltrue, sqlfalse
2217
2218 Expressions for inserting boolean values within SQL statements.
2219 By default these are C<1=1> and C<1=0>. They are used
2220 by the special operators C<-in> and C<-not_in> for generating
2221 correct SQL even when the argument is an empty array (see below).
2222
2223 =item logic
2224
2225 This determines the default logical operator for multiple WHERE
2226 statements in arrays or hashes. If absent, the default logic is "or"
2227 for arrays, and "and" for hashes. This means that a WHERE
2228 array of the form:
2229
2230     @where = (
2231         event_date => {'>=', '2/13/99'},
2232         event_date => {'<=', '4/24/03'},
2233     );
2234
2235 will generate SQL like this:
2236
2237     WHERE event_date >= '2/13/99' OR event_date <= '4/24/03'
2238
2239 This is probably not what you want given this query, though (look
2240 at the dates). To change the "OR" to an "AND", simply specify:
2241
2242     my $sql = SQL::Abstract->new(logic => 'and');
2243
2244 Which will change the above C<WHERE> to:
2245
2246     WHERE event_date >= '2/13/99' AND event_date <= '4/24/03'
2247
2248 The logic can also be changed locally by inserting
2249 a modifier in front of an arrayref:
2250
2251     @where = (-and => [event_date => {'>=', '2/13/99'},
2252                        event_date => {'<=', '4/24/03'} ]);
2253
2254 See the L</"WHERE CLAUSES"> section for explanations.
2255
2256 =item convert
2257
2258 This will automatically convert comparisons using the specified SQL
2259 function for both column and value. This is mostly used with an argument
2260 of C<upper> or C<lower>, so that the SQL will have the effect of
2261 case-insensitive "searches". For example, this:
2262
2263     $sql = SQL::Abstract->new(convert => 'upper');
2264     %where = (keywords => 'MaKe iT CAse inSeNSItive');
2265
2266 Will turn out the following SQL:
2267
2268     WHERE upper(keywords) like upper('MaKe iT CAse inSeNSItive')
2269
2270 The conversion can be C<upper()>, C<lower()>, or any other SQL function
2271 that can be applied symmetrically to fields (actually B<SQL::Abstract> does
2272 not validate this option; it will just pass through what you specify verbatim).
2273
2274 =item bindtype
2275
2276 This is a kludge because many databases suck. For example, you can't
2277 just bind values using DBI's C<execute()> for Oracle C<CLOB> or C<BLOB> fields.
2278 Instead, you have to use C<bind_param()>:
2279
2280     $sth->bind_param(1, 'reg data');
2281     $sth->bind_param(2, $lots, {ora_type => ORA_CLOB});
2282
2283 The problem is, B<SQL::Abstract> will normally just return a C<@bind> array,
2284 which loses track of which field each slot refers to. Fear not.
2285
2286 If you specify C<bindtype> in new, you can determine how C<@bind> is returned.
2287 Currently, you can specify either C<normal> (default) or C<columns>. If you
2288 specify C<columns>, you will get an array that looks like this:
2289
2290     my $sql = SQL::Abstract->new(bindtype => 'columns');
2291     my($stmt, @bind) = $sql->insert(...);
2292
2293     @bind = (
2294         [ 'column1', 'value1' ],
2295         [ 'column2', 'value2' ],
2296         [ 'column3', 'value3' ],
2297     );
2298
2299 You can then iterate through this manually, using DBI's C<bind_param()>.
2300
2301     $sth->prepare($stmt);
2302     my $i = 1;
2303     for (@bind) {
2304         my($col, $data) = @$_;
2305         if ($col eq 'details' || $col eq 'comments') {
2306             $sth->bind_param($i, $data, {ora_type => ORA_CLOB});
2307         } elsif ($col eq 'image') {
2308             $sth->bind_param($i, $data, {ora_type => ORA_BLOB});
2309         } else {
2310             $sth->bind_param($i, $data);
2311         }
2312         $i++;
2313     }
2314     $sth->execute;      # execute without @bind now
2315
2316 Now, why would you still use B<SQL::Abstract> if you have to do this crap?
2317 Basically, the advantage is still that you don't have to care which fields
2318 are or are not included. You could wrap that above C<for> loop in a simple
2319 sub called C<bind_fields()> or something and reuse it repeatedly. You still
2320 get a layer of abstraction over manual SQL specification.
2321
2322 Note that if you set L</bindtype> to C<columns>, the C<\[ $sql, @bind ]>
2323 construct (see L</Literal SQL with placeholders and bind values (subqueries)>)
2324 will expect the bind values in this format.
2325
2326 =item quote_char
2327
2328 This is the character that a table or column name will be quoted
2329 with.  By default this is an empty string, but you could set it to
2330 the character C<`>, to generate SQL like this:
2331
2332   SELECT `a_field` FROM `a_table` WHERE `some_field` LIKE '%someval%'
2333
2334 Alternatively, you can supply an array ref of two items, the first being the left
2335 hand quote character, and the second the right hand quote character. For
2336 example, you could supply C<['[',']']> for SQL Server 2000 compliant quotes
2337 that generates SQL like this:
2338
2339   SELECT [a_field] FROM [a_table] WHERE [some_field] LIKE '%someval%'
2340
2341 Quoting is useful if you have tables or columns names that are reserved
2342 words in your database's SQL dialect.
2343
2344 =item escape_char
2345
2346 This is the character that will be used to escape L</quote_char>s appearing
2347 in an identifier before it has been quoted.
2348
2349 The parameter default in case of a single L</quote_char> character is the quote
2350 character itself.
2351
2352 When opening-closing-style quoting is used (L</quote_char> is an arrayref)
2353 this parameter defaults to the B<closing (right)> L</quote_char>. Occurrences
2354 of the B<opening (left)> L</quote_char> within the identifier are currently left
2355 untouched. The default for opening-closing-style quotes may change in future
2356 versions, thus you are B<strongly encouraged> to specify the escape character
2357 explicitly.
2358
2359 =item name_sep
2360
2361 This is the character that separates a table and column name.  It is
2362 necessary to specify this when the C<quote_char> option is selected,
2363 so that tables and column names can be individually quoted like this:
2364
2365   SELECT `table`.`one_field` FROM `table` WHERE `table`.`other_field` = 1
2366
2367 =item injection_guard
2368
2369 A regular expression C<qr/.../> that is applied to any C<-function> and unquoted
2370 column name specified in a query structure. This is a safety mechanism to avoid
2371 injection attacks when mishandling user input e.g.:
2372
2373   my %condition_as_column_value_pairs = get_values_from_user();
2374   $sqla->select( ... , \%condition_as_column_value_pairs );
2375
2376 If the expression matches an exception is thrown. Note that literal SQL
2377 supplied via C<\'...'> or C<\['...']> is B<not> checked in any way.
2378
2379 Defaults to checking for C<;> and the C<GO> keyword (TransactSQL)
2380
2381 =item array_datatypes
2382
2383 When this option is true, arrayrefs in INSERT or UPDATE are
2384 interpreted as array datatypes and are passed directly
2385 to the DBI layer.
2386 When this option is false, arrayrefs are interpreted
2387 as literal SQL, just like refs to arrayrefs
2388 (but this behavior is for backwards compatibility; when writing
2389 new queries, use the "reference to arrayref" syntax
2390 for literal SQL).
2391
2392
2393 =item special_ops
2394
2395 Takes a reference to a list of "special operators"
2396 to extend the syntax understood by L<SQL::Abstract>.
2397 See section L</"SPECIAL OPERATORS"> for details.
2398
2399 =item unary_ops
2400
2401 Takes a reference to a list of "unary operators"
2402 to extend the syntax understood by L<SQL::Abstract>.
2403 See section L</"UNARY OPERATORS"> for details.
2404
2405
2406
2407 =back
2408
2409 =head2 insert($table, \@values || \%fieldvals, \%options)
2410
2411 This is the simplest function. You simply give it a table name
2412 and either an arrayref of values or hashref of field/value pairs.
2413 It returns an SQL INSERT statement and a list of bind values.
2414 See the sections on L</"Inserting and Updating Arrays"> and
2415 L</"Inserting and Updating SQL"> for information on how to insert
2416 with those data types.
2417
2418 The optional C<\%options> hash reference may contain additional
2419 options to generate the insert SQL. Currently supported options
2420 are:
2421
2422 =over 4
2423
2424 =item returning
2425
2426 Takes either a scalar of raw SQL fields, or an array reference of
2427 field names, and adds on an SQL C<RETURNING> statement at the end.
2428 This allows you to return data generated by the insert statement
2429 (such as row IDs) without performing another C<SELECT> statement.
2430 Note, however, this is not part of the SQL standard and may not
2431 be supported by all database engines.
2432
2433 =back
2434
2435 =head2 update($table, \%fieldvals, \%where, \%options)
2436
2437 This takes a table, hashref of field/value pairs, and an optional
2438 hashref L<WHERE clause|/WHERE CLAUSES>. It returns an SQL UPDATE function and a list
2439 of bind values.
2440 See the sections on L</"Inserting and Updating Arrays"> and
2441 L</"Inserting and Updating SQL"> for information on how to insert
2442 with those data types.
2443
2444 The optional C<\%options> hash reference may contain additional
2445 options to generate the update SQL. Currently supported options
2446 are:
2447
2448 =over 4
2449
2450 =item returning
2451
2452 See the C<returning> option to
2453 L<insert|/insert($table, \@values || \%fieldvals, \%options)>.
2454
2455 =back
2456
2457 =head2 select($source, $fields, $where, $order)
2458
2459 This returns a SQL SELECT statement and associated list of bind values, as
2460 specified by the arguments:
2461
2462 =over
2463
2464 =item $source
2465
2466 Specification of the 'FROM' part of the statement.
2467 The argument can be either a plain scalar (interpreted as a table
2468 name, will be quoted), or an arrayref (interpreted as a list
2469 of table names, joined by commas, quoted), or a scalarref
2470 (literal SQL, not quoted).
2471
2472 =item $fields
2473
2474 Specification of the list of fields to retrieve from
2475 the source.
2476 The argument can be either an arrayref (interpreted as a list
2477 of field names, will be joined by commas and quoted), or a
2478 plain scalar (literal SQL, not quoted).
2479 Please observe that this API is not as flexible as that of
2480 the first argument C<$source>, for backwards compatibility reasons.
2481
2482 =item $where
2483
2484 Optional argument to specify the WHERE part of the query.
2485 The argument is most often a hashref, but can also be
2486 an arrayref or plain scalar --
2487 see section L<WHERE clause|/"WHERE CLAUSES"> for details.
2488
2489 =item $order
2490
2491 Optional argument to specify the ORDER BY part of the query.
2492 The argument can be a scalar, a hashref or an arrayref
2493 -- see section L<ORDER BY clause|/"ORDER BY CLAUSES">
2494 for details.
2495
2496 =back
2497
2498
2499 =head2 delete($table, \%where, \%options)
2500
2501 This takes a table name and optional hashref L<WHERE clause|/WHERE CLAUSES>.
2502 It returns an SQL DELETE statement and list of bind values.
2503
2504 The optional C<\%options> hash reference may contain additional
2505 options to generate the delete SQL. Currently supported options
2506 are:
2507
2508 =over 4
2509
2510 =item returning
2511
2512 See the C<returning> option to
2513 L<insert|/insert($table, \@values || \%fieldvals, \%options)>.
2514
2515 =back
2516
2517 =head2 where(\%where, $order)
2518
2519 This is used to generate just the WHERE clause. For example,
2520 if you have an arbitrary data structure and know what the
2521 rest of your SQL is going to look like, but want an easy way
2522 to produce a WHERE clause, use this. It returns an SQL WHERE
2523 clause and list of bind values.
2524
2525
2526 =head2 values(\%data)
2527
2528 This just returns the values from the hash C<%data>, in the same
2529 order that would be returned from any of the other above queries.
2530 Using this allows you to markedly speed up your queries if you
2531 are affecting lots of rows. See below under the L</"PERFORMANCE"> section.
2532
2533 =head2 generate($any, 'number', $of, \@data, $struct, \%types)
2534
2535 Warning: This is an experimental method and subject to change.
2536
2537 This returns arbitrarily generated SQL. It's a really basic shortcut.
2538 It will return two different things, depending on return context:
2539
2540     my($stmt, @bind) = $sql->generate('create table', \$table, \@fields);
2541     my $stmt_and_val = $sql->generate('create table', \$table, \@fields);
2542
2543 These would return the following:
2544
2545     # First calling form
2546     $stmt = "CREATE TABLE test (?, ?)";
2547     @bind = (field1, field2);
2548
2549     # Second calling form
2550     $stmt_and_val = "CREATE TABLE test (field1, field2)";
2551
2552 Depending on what you're trying to do, it's up to you to choose the correct
2553 format. In this example, the second form is what you would want.
2554
2555 By the same token:
2556
2557     $sql->generate('alter session', { nls_date_format => 'MM/YY' });
2558
2559 Might give you:
2560
2561     ALTER SESSION SET nls_date_format = 'MM/YY'
2562
2563 You get the idea. Strings get their case twiddled, but everything
2564 else remains verbatim.
2565
2566 =head1 EXPORTABLE FUNCTIONS
2567
2568 =head2 is_plain_value
2569
2570 Determines if the supplied argument is a plain value as understood by this
2571 module:
2572
2573 =over
2574
2575 =item * The value is C<undef>
2576
2577 =item * The value is a non-reference
2578
2579 =item * The value is an object with stringification overloading
2580
2581 =item * The value is of the form C<< { -value => $anything } >>
2582
2583 =back
2584
2585 On failure returns C<undef>, on success returns a B<scalar> reference
2586 to the original supplied argument.
2587
2588 =over
2589
2590 =item * Note
2591
2592 The stringification overloading detection is rather advanced: it takes
2593 into consideration not only the presence of a C<""> overload, but if that
2594 fails also checks for enabled
2595 L<autogenerated versions of C<"">|overload/Magic Autogeneration>, based
2596 on either C<0+> or C<bool>.
2597
2598 Unfortunately testing in the field indicates that this
2599 detection B<< may tickle a latent bug in perl versions before 5.018 >>,
2600 but only when very large numbers of stringifying objects are involved.
2601 At the time of writing ( Sep 2014 ) there is no clear explanation of
2602 the direct cause, nor is there a manageably small test case that reliably
2603 reproduces the problem.
2604
2605 If you encounter any of the following exceptions in B<random places within
2606 your application stack> - this module may be to blame:
2607
2608   Operation "ne": no method found,
2609     left argument in overloaded package <something>,
2610     right argument in overloaded package <something>
2611
2612 or perhaps even
2613
2614   Stub found while resolving method "???" overloading """" in package <something>
2615
2616 If you fall victim to the above - please attempt to reduce the problem
2617 to something that could be sent to the L<SQL::Abstract developers
2618 |DBIx::Class/GETTING HELP/SUPPORT>
2619 (either publicly or privately). As a workaround in the meantime you can
2620 set C<$ENV{SQLA_ISVALUE_IGNORE_AUTOGENERATED_STRINGIFICATION}> to a true
2621 value, which will most likely eliminate your problem (at the expense of
2622 not being able to properly detect exotic forms of stringification).
2623
2624 This notice and environment variable will be removed in a future version,
2625 as soon as the underlying problem is found and a reliable workaround is
2626 devised.
2627
2628 =back
2629
2630 =head2 is_literal_value
2631
2632 Determines if the supplied argument is a literal value as understood by this
2633 module:
2634
2635 =over
2636
2637 =item * C<\$sql_string>
2638
2639 =item * C<\[ $sql_string, @bind_values ]>
2640
2641 =back
2642
2643 On failure returns C<undef>, on success returns an B<array> reference
2644 containing the unpacked version of the supplied literal SQL and bind values.
2645
2646 =head1 WHERE CLAUSES
2647
2648 =head2 Introduction
2649
2650 This module uses a variation on the idea from L<DBIx::Abstract>. It
2651 is B<NOT>, repeat I<not> 100% compatible. B<The main logic of this
2652 module is that things in arrays are OR'ed, and things in hashes
2653 are AND'ed.>
2654
2655 The easiest way to explain is to show lots of examples. After
2656 each C<%where> hash shown, it is assumed you used:
2657
2658     my($stmt, @bind) = $sql->where(\%where);
2659
2660 However, note that the C<%where> hash can be used directly in any
2661 of the other functions as well, as described above.
2662
2663 =head2 Key-value pairs
2664
2665 So, let's get started. To begin, a simple hash:
2666
2667     my %where  = (
2668         user   => 'nwiger',
2669         status => 'completed'
2670     );
2671
2672 Is converted to SQL C<key = val> statements:
2673
2674     $stmt = "WHERE user = ? AND status = ?";
2675     @bind = ('nwiger', 'completed');
2676
2677 One common thing I end up doing is having a list of values that
2678 a field can be in. To do this, simply specify a list inside of
2679 an arrayref:
2680
2681     my %where  = (
2682         user   => 'nwiger',
2683         status => ['assigned', 'in-progress', 'pending'];
2684     );
2685
2686 This simple code will create the following:
2687
2688     $stmt = "WHERE user = ? AND ( status = ? OR status = ? OR status = ? )";
2689     @bind = ('nwiger', 'assigned', 'in-progress', 'pending');
2690
2691 A field associated to an empty arrayref will be considered a
2692 logical false and will generate 0=1.
2693
2694 =head2 Tests for NULL values
2695
2696 If the value part is C<undef> then this is converted to SQL <IS NULL>
2697
2698     my %where  = (
2699         user   => 'nwiger',
2700         status => undef,
2701     );
2702
2703 becomes:
2704
2705     $stmt = "WHERE user = ? AND status IS NULL";
2706     @bind = ('nwiger');
2707
2708 To test if a column IS NOT NULL:
2709
2710     my %where  = (
2711         user   => 'nwiger',
2712         status => { '!=', undef },
2713     );
2714
2715 =head2 Specific comparison operators
2716
2717 If you want to specify a different type of operator for your comparison,
2718 you can use a hashref for a given column:
2719
2720     my %where  = (
2721         user   => 'nwiger',
2722         status => { '!=', 'completed' }
2723     );
2724
2725 Which would generate:
2726
2727     $stmt = "WHERE user = ? AND status != ?";
2728     @bind = ('nwiger', 'completed');
2729
2730 To test against multiple values, just enclose the values in an arrayref:
2731
2732     status => { '=', ['assigned', 'in-progress', 'pending'] };
2733
2734 Which would give you:
2735
2736     "WHERE status = ? OR status = ? OR status = ?"
2737
2738
2739 The hashref can also contain multiple pairs, in which case it is expanded
2740 into an C<AND> of its elements:
2741
2742     my %where  = (
2743         user   => 'nwiger',
2744         status => { '!=', 'completed', -not_like => 'pending%' }
2745     );
2746
2747     # Or more dynamically, like from a form
2748     $where{user} = 'nwiger';
2749     $where{status}{'!='} = 'completed';
2750     $where{status}{'-not_like'} = 'pending%';
2751
2752     # Both generate this
2753     $stmt = "WHERE user = ? AND status != ? AND status NOT LIKE ?";
2754     @bind = ('nwiger', 'completed', 'pending%');
2755
2756
2757 To get an OR instead, you can combine it with the arrayref idea:
2758
2759     my %where => (
2760          user => 'nwiger',
2761          priority => [ { '=', 2 }, { '>', 5 } ]
2762     );
2763
2764 Which would generate:
2765
2766     $stmt = "WHERE ( priority = ? OR priority > ? ) AND user = ?";
2767     @bind = ('2', '5', 'nwiger');
2768
2769 If you want to include literal SQL (with or without bind values), just use a
2770 scalar reference or reference to an arrayref as the value:
2771
2772     my %where  = (
2773         date_entered => { '>' => \["to_date(?, 'MM/DD/YYYY')", "11/26/2008"] },
2774         date_expires => { '<' => \"now()" }
2775     );
2776
2777 Which would generate:
2778
2779     $stmt = "WHERE date_entered > to_date(?, 'MM/DD/YYYY') AND date_expires < now()";
2780     @bind = ('11/26/2008');
2781
2782
2783 =head2 Logic and nesting operators
2784
2785 In the example above,
2786 there is a subtle trap if you want to say something like
2787 this (notice the C<AND>):
2788
2789     WHERE priority != ? AND priority != ?
2790
2791 Because, in Perl you I<can't> do this:
2792
2793     priority => { '!=' => 2, '!=' => 1 }
2794
2795 As the second C<!=> key will obliterate the first. The solution
2796 is to use the special C<-modifier> form inside an arrayref:
2797
2798     priority => [ -and => {'!=', 2},
2799                           {'!=', 1} ]
2800
2801
2802 Normally, these would be joined by C<OR>, but the modifier tells it
2803 to use C<AND> instead. (Hint: You can use this in conjunction with the
2804 C<logic> option to C<new()> in order to change the way your queries
2805 work by default.) B<Important:> Note that the C<-modifier> goes
2806 B<INSIDE> the arrayref, as an extra first element. This will
2807 B<NOT> do what you think it might:
2808
2809     priority => -and => [{'!=', 2}, {'!=', 1}]   # WRONG!
2810
2811 Here is a quick list of equivalencies, since there is some overlap:
2812
2813     # Same
2814     status => {'!=', 'completed', 'not like', 'pending%' }
2815     status => [ -and => {'!=', 'completed'}, {'not like', 'pending%'}]
2816
2817     # Same
2818     status => {'=', ['assigned', 'in-progress']}
2819     status => [ -or => {'=', 'assigned'}, {'=', 'in-progress'}]
2820     status => [ {'=', 'assigned'}, {'=', 'in-progress'} ]
2821
2822
2823
2824 =head2 Special operators: IN, BETWEEN, etc.
2825
2826 You can also use the hashref format to compare a list of fields using the
2827 C<IN> comparison operator, by specifying the list as an arrayref:
2828
2829     my %where  = (
2830         status   => 'completed',
2831         reportid => { -in => [567, 2335, 2] }
2832     );
2833
2834 Which would generate:
2835
2836     $stmt = "WHERE status = ? AND reportid IN (?,?,?)";
2837     @bind = ('completed', '567', '2335', '2');
2838
2839 The reverse operator C<-not_in> generates SQL C<NOT IN> and is used in
2840 the same way.
2841
2842 If the argument to C<-in> is an empty array, 'sqlfalse' is generated
2843 (by default: C<1=0>). Similarly, C<< -not_in => [] >> generates
2844 'sqltrue' (by default: C<1=1>).
2845
2846 In addition to the array you can supply a chunk of literal sql or
2847 literal sql with bind:
2848
2849     my %where = {
2850       customer => { -in => \[
2851         'SELECT cust_id FROM cust WHERE balance > ?',
2852         2000,
2853       ],
2854       status => { -in => \'SELECT status_codes FROM states' },
2855     };
2856
2857 would generate:
2858
2859     $stmt = "WHERE (
2860           customer IN ( SELECT cust_id FROM cust WHERE balance > ? )
2861       AND status IN ( SELECT status_codes FROM states )
2862     )";
2863     @bind = ('2000');
2864
2865 Finally, if the argument to C<-in> is not a reference, it will be
2866 treated as a single-element array.
2867
2868 Another pair of operators is C<-between> and C<-not_between>,
2869 used with an arrayref of two values:
2870
2871     my %where  = (
2872         user   => 'nwiger',
2873         completion_date => {
2874            -not_between => ['2002-10-01', '2003-02-06']
2875         }
2876     );
2877
2878 Would give you:
2879
2880     WHERE user = ? AND completion_date NOT BETWEEN ( ? AND ? )
2881
2882 Just like with C<-in> all plausible combinations of literal SQL
2883 are possible:
2884
2885     my %where = {
2886       start0 => { -between => [ 1, 2 ] },
2887       start1 => { -between => \["? AND ?", 1, 2] },
2888       start2 => { -between => \"lower(x) AND upper(y)" },
2889       start3 => { -between => [
2890         \"lower(x)",
2891         \["upper(?)", 'stuff' ],
2892       ] },
2893     };
2894
2895 Would give you:
2896
2897     $stmt = "WHERE (
2898           ( start0 BETWEEN ? AND ?                )
2899       AND ( start1 BETWEEN ? AND ?                )
2900       AND ( start2 BETWEEN lower(x) AND upper(y)  )
2901       AND ( start3 BETWEEN lower(x) AND upper(?)  )
2902     )";
2903     @bind = (1, 2, 1, 2, 'stuff');
2904
2905
2906 These are the two builtin "special operators"; but the
2907 list can be expanded: see section L</"SPECIAL OPERATORS"> below.
2908
2909 =head2 Unary operators: bool
2910
2911 If you wish to test against boolean columns or functions within your
2912 database you can use the C<-bool> and C<-not_bool> operators. For
2913 example to test the column C<is_user> being true and the column
2914 C<is_enabled> being false you would use:-
2915
2916     my %where  = (
2917         -bool       => 'is_user',
2918         -not_bool   => 'is_enabled',
2919     );
2920
2921 Would give you:
2922
2923     WHERE is_user AND NOT is_enabled
2924
2925 If a more complex combination is required, testing more conditions,
2926 then you should use the and/or operators:-
2927
2928     my %where  = (
2929         -and           => [
2930             -bool      => 'one',
2931             -not_bool  => { two=> { -rlike => 'bar' } },
2932             -not_bool  => { three => [ { '=', 2 }, { '>', 5 } ] },
2933         ],
2934     );
2935
2936 Would give you:
2937
2938     WHERE
2939       one
2940         AND
2941       (NOT two RLIKE ?)
2942         AND
2943       (NOT ( three = ? OR three > ? ))
2944
2945
2946 =head2 Nested conditions, -and/-or prefixes
2947
2948 So far, we've seen how multiple conditions are joined with a top-level
2949 C<AND>.  We can change this by putting the different conditions we want in
2950 hashes and then putting those hashes in an array. For example:
2951
2952     my @where = (
2953         {
2954             user   => 'nwiger',
2955             status => { -like => ['pending%', 'dispatched'] },
2956         },
2957         {
2958             user   => 'robot',
2959             status => 'unassigned',
2960         }
2961     );
2962
2963 This data structure would create the following:
2964
2965     $stmt = "WHERE ( user = ? AND ( status LIKE ? OR status LIKE ? ) )
2966                 OR ( user = ? AND status = ? ) )";
2967     @bind = ('nwiger', 'pending', 'dispatched', 'robot', 'unassigned');
2968
2969
2970 Clauses in hashrefs or arrayrefs can be prefixed with an C<-and> or C<-or>
2971 to change the logic inside:
2972
2973     my @where = (
2974          -and => [
2975             user => 'nwiger',
2976             [
2977                 -and => [ workhrs => {'>', 20}, geo => 'ASIA' ],
2978                 -or => { workhrs => {'<', 50}, geo => 'EURO' },
2979             ],
2980         ],
2981     );
2982
2983 That would yield:
2984
2985     $stmt = "WHERE ( user = ?
2986                AND ( ( workhrs > ? AND geo = ? )
2987                   OR ( workhrs < ? OR geo = ? ) ) )";
2988     @bind = ('nwiger', '20', 'ASIA', '50', 'EURO');
2989
2990 =head3 Algebraic inconsistency, for historical reasons
2991
2992 C<Important note>: when connecting several conditions, the C<-and->|C<-or>
2993 operator goes C<outside> of the nested structure; whereas when connecting
2994 several constraints on one column, the C<-and> operator goes
2995 C<inside> the arrayref. Here is an example combining both features:
2996
2997    my @where = (
2998      -and => [a => 1, b => 2],
2999      -or  => [c => 3, d => 4],
3000       e   => [-and => {-like => 'foo%'}, {-like => '%bar'} ]
3001    )
3002
3003 yielding
3004
3005   WHERE ( (    ( a = ? AND b = ? )
3006             OR ( c = ? OR d = ? )
3007             OR ( e LIKE ? AND e LIKE ? ) ) )
3008
3009 This difference in syntax is unfortunate but must be preserved for
3010 historical reasons. So be careful: the two examples below would
3011 seem algebraically equivalent, but they are not
3012
3013   { col => [ -and =>
3014     { -like => 'foo%' },
3015     { -like => '%bar' },
3016   ] }
3017   # yields: WHERE ( ( col LIKE ? AND col LIKE ? ) )
3018
3019   [ -and =>
3020     { col => { -like => 'foo%' } },
3021     { col => { -like => '%bar' } },
3022   ]
3023   # yields: WHERE ( ( col LIKE ? OR col LIKE ? ) )
3024
3025
3026 =head2 Literal SQL and value type operators
3027
3028 The basic premise of SQL::Abstract is that in WHERE specifications the "left
3029 side" is a column name and the "right side" is a value (normally rendered as
3030 a placeholder). This holds true for both hashrefs and arrayref pairs as you
3031 see in the L</WHERE CLAUSES> examples above. Sometimes it is necessary to
3032 alter this behavior. There are several ways of doing so.
3033
3034 =head3 -ident
3035
3036 This is a virtual operator that signals the string to its right side is an
3037 identifier (a column name) and not a value. For example to compare two
3038 columns you would write:
3039
3040     my %where = (
3041         priority => { '<', 2 },
3042         requestor => { -ident => 'submitter' },
3043     );
3044
3045 which creates:
3046
3047     $stmt = "WHERE priority < ? AND requestor = submitter";
3048     @bind = ('2');
3049
3050 If you are maintaining legacy code you may see a different construct as
3051 described in L</Deprecated usage of Literal SQL>, please use C<-ident> in new
3052 code.
3053
3054 =head3 -value
3055
3056 This is a virtual operator that signals that the construct to its right side
3057 is a value to be passed to DBI. This is for example necessary when you want
3058 to write a where clause against an array (for RDBMS that support such
3059 datatypes). For example:
3060
3061     my %where = (
3062         array => { -value => [1, 2, 3] }
3063     );
3064
3065 will result in:
3066
3067     $stmt = 'WHERE array = ?';
3068     @bind = ([1, 2, 3]);
3069
3070 Note that if you were to simply say:
3071
3072     my %where = (
3073         array => [1, 2, 3]
3074     );
3075
3076 the result would probably not be what you wanted:
3077
3078     $stmt = 'WHERE array = ? OR array = ? OR array = ?';
3079     @bind = (1, 2, 3);
3080
3081 =head3 Literal SQL
3082
3083 Finally, sometimes only literal SQL will do. To include a random snippet
3084 of SQL verbatim, you specify it as a scalar reference. Consider this only
3085 as a last resort. Usually there is a better way. For example:
3086
3087     my %where = (
3088         priority => { '<', 2 },
3089         requestor => { -in => \'(SELECT name FROM hitmen)' },
3090     );
3091
3092 Would create:
3093
3094     $stmt = "WHERE priority < ? AND requestor IN (SELECT name FROM hitmen)"
3095     @bind = (2);
3096
3097 Note that in this example, you only get one bind parameter back, since
3098 the verbatim SQL is passed as part of the statement.
3099
3100 =head4 CAVEAT
3101
3102   Never use untrusted input as a literal SQL argument - this is a massive
3103   security risk (there is no way to check literal snippets for SQL
3104   injections and other nastyness). If you need to deal with untrusted input
3105   use literal SQL with placeholders as described next.
3106
3107 =head3 Literal SQL with placeholders and bind values (subqueries)
3108
3109 If the literal SQL to be inserted has placeholders and bind values,
3110 use a reference to an arrayref (yes this is a double reference --
3111 not so common, but perfectly legal Perl). For example, to find a date
3112 in Postgres you can use something like this:
3113
3114     my %where = (
3115        date_column => \[ "= date '2008-09-30' - ?::integer", 10 ]
3116     )
3117
3118 This would create:
3119
3120     $stmt = "WHERE ( date_column = date '2008-09-30' - ?::integer )"
3121     @bind = ('10');
3122
3123 Note that you must pass the bind values in the same format as they are returned
3124 by L<where|/where(\%where, $order)>. This means that if you set L</bindtype>
3125 to C<columns>, you must provide the bind values in the
3126 C<< [ column_meta => value ] >> format, where C<column_meta> is an opaque
3127 scalar value; most commonly the column name, but you can use any scalar value
3128 (including references and blessed references), L<SQL::Abstract> will simply
3129 pass it through intact. So if C<bindtype> is set to C<columns> the above
3130 example will look like:
3131
3132     my %where = (
3133        date_column => \[ "= date '2008-09-30' - ?::integer", [ {} => 10 ] ]
3134     )
3135
3136 Literal SQL is especially useful for nesting parenthesized clauses in the
3137 main SQL query. Here is a first example:
3138
3139   my ($sub_stmt, @sub_bind) = ("SELECT c1 FROM t1 WHERE c2 < ? AND c3 LIKE ?",
3140                                100, "foo%");
3141   my %where = (
3142     foo => 1234,
3143     bar => \["IN ($sub_stmt)" => @sub_bind],
3144   );
3145
3146 This yields:
3147
3148   $stmt = "WHERE (foo = ? AND bar IN (SELECT c1 FROM t1
3149                                              WHERE c2 < ? AND c3 LIKE ?))";
3150   @bind = (1234, 100, "foo%");
3151
3152 Other subquery operators, like for example C<"E<gt> ALL"> or C<"NOT IN">,
3153 are expressed in the same way. Of course the C<$sub_stmt> and
3154 its associated bind values can be generated through a former call
3155 to C<select()> :
3156
3157   my ($sub_stmt, @sub_bind)
3158      = $sql->select("t1", "c1", {c2 => {"<" => 100},
3159                                  c3 => {-like => "foo%"}});
3160   my %where = (
3161     foo => 1234,
3162     bar => \["> ALL ($sub_stmt)" => @sub_bind],
3163   );
3164
3165 In the examples above, the subquery was used as an operator on a column;
3166 but the same principle also applies for a clause within the main C<%where>
3167 hash, like an EXISTS subquery:
3168
3169   my ($sub_stmt, @sub_bind)
3170      = $sql->select("t1", "*", {c1 => 1, c2 => \"> t0.c0"});
3171   my %where = ( -and => [
3172     foo   => 1234,
3173     \["EXISTS ($sub_stmt)" => @sub_bind],
3174   ]);
3175
3176 which yields
3177
3178   $stmt = "WHERE (foo = ? AND EXISTS (SELECT * FROM t1
3179                                         WHERE c1 = ? AND c2 > t0.c0))";
3180   @bind = (1234, 1);
3181
3182
3183 Observe that the condition on C<c2> in the subquery refers to
3184 column C<t0.c0> of the main query: this is I<not> a bind
3185 value, so we have to express it through a scalar ref.
3186 Writing C<< c2 => {">" => "t0.c0"} >> would have generated
3187 C<< c2 > ? >> with bind value C<"t0.c0"> ... not exactly
3188 what we wanted here.
3189
3190 Finally, here is an example where a subquery is used
3191 for expressing unary negation:
3192
3193   my ($sub_stmt, @sub_bind)
3194      = $sql->where({age => [{"<" => 10}, {">" => 20}]});
3195   $sub_stmt =~ s/^ where //i; # don't want "WHERE" in the subclause
3196   my %where = (
3197         lname  => {like => '%son%'},
3198         \["NOT ($sub_stmt)" => @sub_bind],
3199     );
3200
3201 This yields
3202
3203   $stmt = "lname LIKE ? AND NOT ( age < ? OR age > ? )"
3204   @bind = ('%son%', 10, 20)
3205
3206 =head3 Deprecated usage of Literal SQL
3207
3208 Below are some examples of archaic use of literal SQL. It is shown only as
3209 reference for those who deal with legacy code. Each example has a much
3210 better, cleaner and safer alternative that users should opt for in new code.
3211
3212 =over
3213
3214 =item *
3215
3216     my %where = ( requestor => \'IS NOT NULL' )
3217
3218     $stmt = "WHERE requestor IS NOT NULL"
3219
3220 This used to be the way of generating NULL comparisons, before the handling
3221 of C<undef> got formalized. For new code please use the superior syntax as
3222 described in L</Tests for NULL values>.
3223
3224 =item *
3225
3226     my %where = ( requestor => \'= submitter' )
3227
3228     $stmt = "WHERE requestor = submitter"
3229
3230 This used to be the only way to compare columns. Use the superior L</-ident>
3231 method for all new code. For example an identifier declared in such a way
3232 will be properly quoted if L</quote_char> is properly set, while the legacy
3233 form will remain as supplied.
3234
3235 =item *
3236
3237     my %where = ( is_ready  => \"", completed => { '>', '2012-12-21' } )
3238
3239     $stmt = "WHERE completed > ? AND is_ready"
3240     @bind = ('2012-12-21')
3241
3242 Using an empty string literal used to be the only way to express a boolean.
3243 For all new code please use the much more readable
3244 L<-bool|/Unary operators: bool> operator.
3245
3246 =back
3247
3248 =head2 Conclusion
3249
3250 These pages could go on for a while, since the nesting of the data
3251 structures this module can handle are pretty much unlimited (the
3252 module implements the C<WHERE> expansion as a recursive function
3253 internally). Your best bet is to "play around" with the module a
3254 little to see how the data structures behave, and choose the best
3255 format for your data based on that.
3256
3257 And of course, all the values above will probably be replaced with
3258 variables gotten from forms or the command line. After all, if you
3259 knew everything ahead of time, you wouldn't have to worry about
3260 dynamically-generating SQL and could just hardwire it into your
3261 script.
3262
3263 =head1 ORDER BY CLAUSES
3264
3265 Some functions take an order by clause. This can either be a scalar (just a
3266 column name), a hashref of C<< { -desc => 'col' } >> or C<< { -asc => 'col' }
3267 >>, a scalarref, an arrayref-ref, or an arrayref of any of the previous
3268 forms. Examples:
3269
3270                Given              |         Will Generate
3271     ---------------------------------------------------------------
3272                                   |
3273     'colA'                        | ORDER BY colA
3274                                   |
3275     [qw/colA colB/]               | ORDER BY colA, colB
3276                                   |
3277     {-asc  => 'colA'}             | ORDER BY colA ASC
3278                                   |
3279     {-desc => 'colB'}             | ORDER BY colB DESC
3280                                   |
3281     ['colA', {-asc => 'colB'}]    | ORDER BY colA, colB ASC
3282                                   |
3283     { -asc => [qw/colA colB/] }   | ORDER BY colA ASC, colB ASC
3284                                   |
3285     \'colA DESC'                  | ORDER BY colA DESC
3286                                   |
3287     \[ 'FUNC(colA, ?)', $x ]      | ORDER BY FUNC(colA, ?)
3288                                   |   /* ...with $x bound to ? */
3289                                   |
3290     [                             | ORDER BY
3291       { -asc => 'colA' },         |     colA ASC,
3292       { -desc => [qw/colB/] },    |     colB DESC,
3293       { -asc => [qw/colC colD/] },|     colC ASC, colD ASC,
3294       \'colE DESC',               |     colE DESC,
3295       \[ 'FUNC(colF, ?)', $x ],   |     FUNC(colF, ?)
3296     ]                             |   /* ...with $x bound to ? */
3297     ===============================================================
3298
3299
3300
3301 =head1 SPECIAL OPERATORS
3302
3303   my $sqlmaker = SQL::Abstract->new(special_ops => [
3304      {
3305       regex => qr/.../,
3306       handler => sub {
3307         my ($self, $field, $op, $arg) = @_;
3308         ...
3309       },
3310      },
3311      {
3312       regex => qr/.../,
3313       handler => 'method_name',
3314      },
3315    ]);
3316
3317 A "special operator" is a SQL syntactic clause that can be
3318 applied to a field, instead of a usual binary operator.
3319 For example:
3320
3321    WHERE field IN (?, ?, ?)
3322    WHERE field BETWEEN ? AND ?
3323    WHERE MATCH(field) AGAINST (?, ?)
3324
3325 Special operators IN and BETWEEN are fairly standard and therefore
3326 are builtin within C<SQL::Abstract> (as the overridable methods
3327 C<_where_field_IN> and C<_where_field_BETWEEN>). For other operators,
3328 like the MATCH .. AGAINST example above which is specific to MySQL,
3329 you can write your own operator handlers - supply a C<special_ops>
3330 argument to the C<new> method. That argument takes an arrayref of
3331 operator definitions; each operator definition is a hashref with two
3332 entries:
3333
3334 =over
3335
3336 =item regex
3337
3338 the regular expression to match the operator
3339
3340 =item handler
3341
3342 Either a coderef or a plain scalar method name. In both cases
3343 the expected return is C<< ($sql, @bind) >>.
3344
3345 When supplied with a method name, it is simply called on the
3346 L<SQL::Abstract> object as:
3347
3348  $self->$method_name($field, $op, $arg)
3349
3350  Where:
3351
3352   $field is the LHS of the operator
3353   $op is the part that matched the handler regex
3354   $arg is the RHS
3355
3356 When supplied with a coderef, it is called as:
3357
3358  $coderef->($self, $field, $op, $arg)
3359
3360
3361 =back
3362
3363 For example, here is an implementation
3364 of the MATCH .. AGAINST syntax for MySQL
3365
3366   my $sqlmaker = SQL::Abstract->new(special_ops => [
3367
3368     # special op for MySql MATCH (field) AGAINST(word1, word2, ...)
3369     {regex => qr/^match$/i,
3370      handler => sub {
3371        my ($self, $field, $op, $arg) = @_;
3372        $arg = [$arg] if not ref $arg;
3373        my $label         = $self->_quote($field);
3374        my ($placeholder) = $self->_convert('?');
3375        my $placeholders  = join ", ", (($placeholder) x @$arg);
3376        my $sql           = $self->_sqlcase('match') . " ($label) "
3377                          . $self->_sqlcase('against') . " ($placeholders) ";
3378        my @bind = $self->_bindtype($field, @$arg);
3379        return ($sql, @bind);
3380        }
3381      },
3382
3383   ]);
3384
3385
3386 =head1 UNARY OPERATORS
3387
3388   my $sqlmaker = SQL::Abstract->new(unary_ops => [
3389      {
3390       regex => qr/.../,
3391       handler => sub {
3392         my ($self, $op, $arg) = @_;
3393         ...
3394       },
3395      },
3396      {
3397       regex => qr/.../,
3398       handler => 'method_name',
3399      },
3400    ]);
3401
3402 A "unary operator" is a SQL syntactic clause that can be
3403 applied to a field - the operator goes before the field
3404
3405 You can write your own operator handlers - supply a C<unary_ops>
3406 argument to the C<new> method. That argument takes an arrayref of
3407 operator definitions; each operator definition is a hashref with two
3408 entries:
3409
3410 =over
3411
3412 =item regex
3413
3414 the regular expression to match the operator
3415
3416 =item handler
3417
3418 Either a coderef or a plain scalar method name. In both cases
3419 the expected return is C<< $sql >>.
3420
3421 When supplied with a method name, it is simply called on the
3422 L<SQL::Abstract> object as:
3423
3424  $self->$method_name($op, $arg)
3425
3426  Where:
3427
3428   $op is the part that matched the handler regex
3429   $arg is the RHS or argument of the operator
3430
3431 When supplied with a coderef, it is called as:
3432
3433  $coderef->($self, $op, $arg)
3434
3435
3436 =back
3437
3438
3439 =head1 PERFORMANCE
3440
3441 Thanks to some benchmarking by Mark Stosberg, it turns out that
3442 this module is many orders of magnitude faster than using C<DBIx::Abstract>.
3443 I must admit this wasn't an intentional design issue, but it's a
3444 byproduct of the fact that you get to control your C<DBI> handles
3445 yourself.
3446
3447 To maximize performance, use a code snippet like the following:
3448
3449     # prepare a statement handle using the first row
3450     # and then reuse it for the rest of the rows
3451     my($sth, $stmt);
3452     for my $href (@array_of_hashrefs) {
3453         $stmt ||= $sql->insert('table', $href);
3454         $sth  ||= $dbh->prepare($stmt);
3455         $sth->execute($sql->values($href));
3456     }
3457
3458 The reason this works is because the keys in your C<$href> are sorted
3459 internally by B<SQL::Abstract>. Thus, as long as your data retains
3460 the same structure, you only have to generate the SQL the first time
3461 around. On subsequent queries, simply use the C<values> function provided
3462 by this module to return your values in the correct order.
3463
3464 However this depends on the values having the same type - if, for
3465 example, the values of a where clause may either have values
3466 (resulting in sql of the form C<column = ?> with a single bind
3467 value), or alternatively the values might be C<undef> (resulting in
3468 sql of the form C<column IS NULL> with no bind value) then the
3469 caching technique suggested will not work.
3470
3471 =head1 FORMBUILDER
3472
3473 If you use my C<CGI::FormBuilder> module at all, you'll hopefully
3474 really like this part (I do, at least). Building up a complex query
3475 can be as simple as the following:
3476
3477     #!/usr/bin/perl
3478
3479     use warnings;
3480     use strict;
3481
3482     use CGI::FormBuilder;
3483     use SQL::Abstract;
3484
3485     my $form = CGI::FormBuilder->new(...);
3486     my $sql  = SQL::Abstract->new;
3487
3488     if ($form->submitted) {
3489         my $field = $form->field;
3490         my $id = delete $field->{id};
3491         my($stmt, @bind) = $sql->update('table', $field, {id => $id});
3492     }
3493
3494 Of course, you would still have to connect using C<DBI> to run the
3495 query, but the point is that if you make your form look like your
3496 table, the actual query script can be extremely simplistic.
3497
3498 If you're B<REALLY> lazy (I am), check out C<HTML::QuickTable> for
3499 a fast interface to returning and formatting data. I frequently
3500 use these three modules together to write complex database query
3501 apps in under 50 lines.
3502
3503 =head1 HOW TO CONTRIBUTE
3504
3505 Contributions are always welcome, in all usable forms (we especially
3506 welcome documentation improvements). The delivery methods include git-
3507 or unified-diff formatted patches, GitHub pull requests, or plain bug
3508 reports either via RT or the Mailing list. Contributors are generally
3509 granted full access to the official repository after their first several
3510 patches pass successful review.
3511
3512 This project is maintained in a git repository. The code and related tools are
3513 accessible at the following locations:
3514
3515 =over
3516
3517 =item * Official repo: L<git://git.shadowcat.co.uk/dbsrgits/SQL-Abstract.git>
3518
3519 =item * Official gitweb: L<http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits/SQL-Abstract.git>
3520
3521 =item * GitHub mirror: L<https://github.com/dbsrgits/sql-abstract>
3522
3523 =item * Authorized committers: L<ssh://dbsrgits@git.shadowcat.co.uk/SQL-Abstract.git>
3524
3525 =back
3526
3527 =head1 CHANGES
3528
3529 Version 1.50 was a major internal refactoring of C<SQL::Abstract>.
3530 Great care has been taken to preserve the I<published> behavior
3531 documented in previous versions in the 1.* family; however,
3532 some features that were previously undocumented, or behaved
3533 differently from the documentation, had to be changed in order
3534 to clarify the semantics. Hence, client code that was relying
3535 on some dark areas of C<SQL::Abstract> v1.*
3536 B<might behave differently> in v1.50.
3537
3538 The main changes are:
3539
3540 =over
3541
3542 =item *
3543
3544 support for literal SQL through the C<< \ [ $sql, @bind ] >> syntax.
3545
3546 =item *
3547
3548 support for the { operator => \"..." } construct (to embed literal SQL)
3549
3550 =item *
3551
3552 support for the { operator => \["...", @bind] } construct (to embed literal SQL with bind values)
3553
3554 =item *
3555
3556 optional support for L<array datatypes|/"Inserting and Updating Arrays">
3557
3558 =item *
3559
3560 defensive programming: check arguments
3561
3562 =item *
3563
3564 fixed bug with global logic, which was previously implemented
3565 through global variables yielding side-effects. Prior versions would
3566 interpret C<< [ {cond1, cond2}, [cond3, cond4] ] >>
3567 as C<< "(cond1 AND cond2) OR (cond3 AND cond4)" >>.
3568 Now this is interpreted
3569 as C<< "(cond1 AND cond2) OR (cond3 OR cond4)" >>.
3570
3571
3572 =item *
3573
3574 fixed semantics of  _bindtype on array args
3575
3576 =item *
3577
3578 dropped the C<_anoncopy> of the %where tree. No longer necessary,
3579 we just avoid shifting arrays within that tree.
3580
3581 =item *
3582
3583 dropped the C<_modlogic> function
3584
3585 =back
3586
3587 =head1 ACKNOWLEDGEMENTS
3588
3589 There are a number of individuals that have really helped out with
3590 this module. Unfortunately, most of them submitted bugs via CPAN
3591 so I have no idea who they are! But the people I do know are:
3592
3593     Ash Berlin (order_by hash term support)
3594     Matt Trout (DBIx::Class support)
3595     Mark Stosberg (benchmarking)
3596     Chas Owens (initial "IN" operator support)
3597     Philip Collins (per-field SQL functions)
3598     Eric Kolve (hashref "AND" support)
3599     Mike Fragassi (enhancements to "BETWEEN" and "LIKE")
3600     Dan Kubb (support for "quote_char" and "name_sep")
3601     Guillermo Roditi (patch to cleanup "IN" and "BETWEEN", fix and tests for _order_by)
3602     Laurent Dami (internal refactoring, extensible list of special operators, literal SQL)
3603     Norbert Buchmuller (support for literal SQL in hashpair, misc. fixes & tests)
3604     Peter Rabbitson (rewrite of SQLA::Test, misc. fixes & tests)
3605     Oliver Charles (support for "RETURNING" after "INSERT")
3606
3607 Thanks!
3608
3609 =head1 SEE ALSO
3610
3611 L<DBIx::Class>, L<DBIx::Abstract>, L<CGI::FormBuilder>, L<HTML::QuickTable>.
3612
3613 =head1 AUTHOR
3614
3615 Copyright (c) 2001-2007 Nathan Wiger <nwiger@cpan.org>. All Rights Reserved.
3616
3617 This module is actively maintained by Matt Trout <mst@shadowcatsystems.co.uk>
3618
3619 For support, your best bet is to try the C<DBIx::Class> users mailing list.
3620 While not an official support venue, C<DBIx::Class> makes heavy use of
3621 C<SQL::Abstract>, and as such list members there are very familiar with
3622 how to create queries.
3623
3624 =head1 LICENSE
3625
3626 This module is free software; you may copy this under the same
3627 terms as perl itself (either the GNU General Public License or
3628 the Artistic License)
3629
3630 =cut