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