606ef6da046b768f8bdf6542775c80c32ee48980
[dbsrgits/SQL-Abstract.git] / lib / SQL / Abstract.pm
1 package SQL::Abstract; # see doc at end of file
2
3 # LDNOTE : this code is heavy refactoring from original SQLA.
4 # Several design decisions will need discussion during
5 # the test / diffusion / acceptance phase; those are marked with flag
6 # 'LDNOTE' (note by laurent.dami AT free.fr)
7
8 use strict;
9 use Carp ();
10 use warnings FATAL => 'all';
11 use List::Util ();
12 use Scalar::Util ();
13 use Data::Query::Constants qw(
14   DQ_IDENTIFIER DQ_OPERATOR DQ_VALUE DQ_LITERAL DQ_JOIN DQ_SELECT DQ_ORDER
15   DQ_WHERE DQ_DELETE DQ_UPDATE DQ_INSERT
16 );
17 use Data::Query::ExprHelpers qw(perl_scalar_value);
18
19 #======================================================================
20 # GLOBALS
21 #======================================================================
22
23 our $VERSION  = '1.72';
24
25 # This would confuse some packagers
26 $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
27
28 our $AUTOLOAD;
29
30 # special operators (-in, -between). May be extended/overridden by user.
31 # See section WHERE: BUILTIN SPECIAL OPERATORS below for implementation
32 my @BUILTIN_SPECIAL_OPS = ();
33
34 # unaryish operators - key maps to handler
35 my @BUILTIN_UNARY_OPS = ();
36
37 #======================================================================
38 # DEBUGGING AND ERROR REPORTING
39 #======================================================================
40
41 sub _debug {
42   return unless $_[0]->{debug}; shift; # a little faster
43   my $func = (caller(1))[3];
44   warn "[$func] ", @_, "\n";
45 }
46
47 sub belch (@) {
48   my($func) = (caller(1))[3];
49   Carp::carp "[$func] Warning: ", @_;
50 }
51
52 sub puke (@) {
53   my($func) = (caller(1))[3];
54   Carp::croak "[$func] Fatal: ", @_;
55 }
56
57
58 #======================================================================
59 # NEW
60 #======================================================================
61
62 sub new {
63   my $self = shift;
64   my $class = ref($self) || $self;
65   my %opt = (ref $_[0] eq 'HASH') ? %{$_[0]} : @_;
66
67   # choose our case by keeping an option around
68   delete $opt{case} if $opt{case} && $opt{case} ne 'lower';
69
70   # default logic for interpreting arrayrefs
71   $opt{logic} = $opt{logic} ? uc $opt{logic} : 'OR';
72
73   # how to return bind vars
74   # LDNOTE: changed nwiger code : why this 'delete' ??
75   # $opt{bindtype} ||= delete($opt{bind_type}) || 'normal';
76   $opt{bindtype} ||= 'normal';
77
78   # default comparison is "=", but can be overridden
79   $opt{cmp} ||= '=';
80
81   # try to recognize which are the 'equality' and 'unequality' ops
82   # (temporary quickfix, should go through a more seasoned API)
83   $opt{equality_op}   = qr/^(\Q$opt{cmp}\E|is|(is\s+)?like)$/i;
84   $opt{inequality_op} = qr/^(!=|<>|(is\s+)?not(\s+like)?)$/i;
85
86   # SQL booleans
87   $opt{sqltrue}  ||= '1=1';
88   $opt{sqlfalse} ||= '0=1';
89
90   # special operators
91   $opt{special_ops} ||= [];
92   # regexes are applied in order, thus push after user-defines
93   push @{$opt{special_ops}}, @BUILTIN_SPECIAL_OPS;
94
95   # unary operators
96   $opt{unary_ops} ||= [];
97   push @{$opt{unary_ops}}, @BUILTIN_UNARY_OPS;
98
99   # rudimentary saniy-check for user supplied bits treated as functions/operators
100   # If a purported  function matches this regular expression, an exception is thrown.
101   # Literal SQL is *NOT* subject to this check, only functions (and column names
102   # when quoting is not in effect)
103
104   # FIXME
105   # need to guard against ()'s in column names too, but this will break tons of
106   # hacks... ideas anyone?
107   $opt{injection_guard} ||= qr/
108     \;
109       |
110     ^ \s* go \s
111   /xmi;
112
113   $opt{name_sep} ||= '.';
114
115   $opt{renderer} ||= do {
116     require Data::Query::Renderer::SQL::Naive;
117     my ($always, $chars);
118     for ($opt{quote_char}) {
119       $chars = defined() ? (ref() ? $_ : [$_]) : ['',''];
120       $always = defined;
121     }
122     Data::Query::Renderer::SQL::Naive->new({
123       quote_chars => $chars, always_quote => $always,
124       ($opt{case} ? (lc_keywords => 1) : ()), # always 'lower' if it exists
125     });
126   };
127
128   return bless \%opt, $class;
129 }
130
131 sub _render_dq {
132   my ($self, $dq) = @_;
133   if (!$dq) {
134     return '';
135   }
136   my ($sql, @bind) = @{$self->{renderer}->render($dq)};
137   wantarray ?
138     ($self->{bindtype} eq 'normal'
139       ? ($sql, map $_->{value}, @bind)
140       : ($sql, map [ $_->{value_meta}, $_->{value} ], @bind)
141     )
142     : $sql;
143 }
144
145 sub _literal_to_dq {
146   my ($self, $literal) = @_;
147   my @bind;
148   ($literal, @bind) = @$literal if ref($literal) eq 'ARRAY';
149   +{
150     type => DQ_LITERAL,
151     subtype => 'SQL',
152     literal => $literal,
153     (@bind ? (values => [ $self->_bind_to_dq(@bind) ]) : ()),
154   };
155 }
156
157 sub _bind_to_dq {
158   my ($self, @bind) = @_;
159   return unless @bind;
160   $self->{bindtype} eq 'normal'
161     ? map perl_scalar_value($_), @bind
162     : do {
163         $self->_assert_bindval_matches_bindtype(@bind);
164         map perl_scalar_value(reverse @$_), @bind
165       }
166 }
167
168 sub _value_to_dq {
169   my ($self, $value) = @_;
170   $self->_maybe_convert_dq(perl_scalar_value($value, our $Cur_Col_Meta));
171 }
172
173 sub _ident_to_dq {
174   my ($self, $ident) = @_;
175   $self->_assert_pass_injection_guard($ident)
176     unless $self->{renderer}{always_quote};
177   $self->_maybe_convert_dq({
178     type => DQ_IDENTIFIER,
179     elements => [ split /\Q$self->{name_sep}/, $ident ],
180   });
181 }
182
183 sub _maybe_convert_dq {
184   my ($self, $dq) = @_;
185   if (my $c = $self->{where_convert}) {
186     +{
187        type => DQ_OPERATOR,
188        operator => { 'SQL.Naive' => 'apply' },
189        args => [
190          { type => DQ_IDENTIFIER, elements => [ $self->_sqlcase($c) ] },
191          $dq
192        ]
193      };
194   } else {
195     $dq;
196   }
197 }
198
199 sub _op_to_dq {
200   my ($self, $op, @args) = @_;
201   $self->_assert_pass_injection_guard($op);
202   +{
203     type => DQ_OPERATOR,
204     operator => { 'SQL.Naive' => $op },
205     args => \@args
206   };
207 }
208
209 sub _assert_pass_injection_guard {
210   if ($_[1] =~ $_[0]->{injection_guard}) {
211     my $class = ref $_[0];
212     puke "Possible SQL injection attempt '$_[1]'. If this is indeed a part of the "
213      . "desired SQL use literal SQL ( \'...' or \[ '...' ] ) or supply your own "
214      . "{injection_guard} attribute to ${class}->new()"
215   }
216 }
217
218
219 #======================================================================
220 # INSERT methods
221 #======================================================================
222
223 sub insert {
224   my $self = shift;
225   $self->_render_dq($self->_insert_to_dq(@_));
226 }
227
228 sub _insert_to_dq {
229   my ($self, $table, $data, $options) = @_;
230   my (@names, @values);
231   if (ref($data) eq 'HASH') {
232     @names = sort keys %$data;
233     foreach my $k (@names) {
234       local our $Cur_Col_Meta = $k;
235       push @values, $self->_mutation_rhs_to_dq($data->{$k});
236     }
237   } elsif (ref($data) eq 'ARRAY') {
238     local our $Cur_Col_Meta;
239     @values = map $self->_mutation_rhs_to_dq($_), @$data;
240   } else {
241     die "Not handled yet";
242   }
243   my $returning;
244   if (my $r_source = $options->{returning}) {
245     $returning = [
246       map +(ref($_) ? $self->_expr_to_dq($_) : $self->_ident_to_dq($_)),
247         (ref($r_source) eq 'ARRAY' ? @$r_source : $r_source),
248     ];
249   }
250   +{
251     type => DQ_INSERT,
252     target => $self->_ident_to_dq($table),
253     (@names ? (names => [ map $self->_ident_to_dq($_), @names ]) : ()),
254     values => [ \@values ],
255     ($returning ? (returning => $returning) : ()),
256   };
257 }
258
259 sub _mutation_rhs_to_dq {
260   my ($self, $v) = @_;
261   if (ref($v) eq 'ARRAY') {
262     if ($self->{array_datatypes}) {
263       return $self->_value_to_dq($v);
264     }
265     $v = \do { my $x = $v };
266   }
267   if (ref($v) eq 'HASH') {
268     my ($op, $arg, @rest) = %$v;
269
270     puke 'Operator calls in update/insert must be in the form { -op => $arg }'
271       if (@rest or not $op =~ /^\-(.+)/);
272   }
273   return $self->_expr_to_dq($v);
274 }
275
276 #======================================================================
277 # UPDATE methods
278 #======================================================================
279
280
281 sub update {
282   my $self = shift;
283   $self->_render_dq($self->_update_to_dq(@_));
284 }
285
286 sub _update_to_dq {
287   my ($self, $table, $data, $where) = @_;
288
289   puke "Unsupported data type specified to \$sql->update"
290     unless ref $data eq 'HASH';
291
292   my @set;
293
294   foreach my $k (sort keys %$data) {
295     my $v = $data->{$k};
296     local our $Cur_Col_Meta = $k;
297     push @set, [ $self->_ident_to_dq($k), $self->_mutation_rhs_to_dq($v) ];
298   }
299
300   return +{
301     type => DQ_UPDATE,
302     target => $self->_ident_to_dq($table),
303     set => \@set,
304     where => $self->_where_to_dq($where),
305   };
306 }
307
308
309 #======================================================================
310 # SELECT
311 #======================================================================
312
313 sub _source_to_dq {
314   my ($self, $table, $where) = @_;
315
316   my $source_dq = $self->_table_to_dq($table);
317
318   if (my $where_dq = $self->_where_to_dq($where)) {
319     $source_dq = {
320       type => DQ_WHERE,
321       from => $source_dq,
322       where => $where_dq,
323     };
324   }
325
326   $source_dq;
327 }
328
329 sub select {
330   my $self   = shift;
331   return $self->_render_dq($self->_select_to_dq(@_));
332 }
333
334 sub _select_to_dq {
335   my ($self, $table, $fields, $where, $order) = @_;
336   $fields ||= '*';
337
338   my $source_dq = $self->_source_to_dq($table, $where);
339
340   my $final_dq = {
341     type => DQ_SELECT,
342     select => [
343       map $self->_ident_to_dq($_),
344         ref($fields) eq 'ARRAY' ? @$fields : $fields
345     ],
346     from => $source_dq,
347   };
348
349   if ($order) {
350     $final_dq = $self->_order_by_to_dq($order, undef, $final_dq);
351   }
352
353   return $final_dq;
354 }
355
356 #======================================================================
357 # DELETE
358 #======================================================================
359
360
361 sub delete {
362   my $self  = shift;
363   $self->_render_dq($self->_delete_to_dq(@_));
364 }
365
366 sub _delete_to_dq {
367   my ($self, $table, $where) = @_;
368   +{
369     type => DQ_DELETE,
370     target => $self->_table_to_dq($table),
371     where => $self->_where_to_dq($where),
372   }
373 }
374
375
376 #======================================================================
377 # WHERE: entry point
378 #======================================================================
379
380
381
382 # Finally, a separate routine just to handle WHERE clauses
383 sub where {
384   my ($self, $where, $order) = @_;
385
386   my $sql = '';
387   my @bind;
388
389   # where ?
390   ($sql, @bind) = $self->_recurse_where($where) if defined($where);
391   $sql = $sql ? $self->_sqlcase(' where ') . "( $sql )" : '';
392
393   # order by?
394   if ($order) {
395     $sql .= $self->_order_by($order);
396   }
397
398   return wantarray ? ($sql, @bind) : $sql;
399 }
400
401 sub _recurse_where {
402   my ($self, $where, $logic) = @_;
403
404   return $self->_render_dq($self->_where_to_dq($where, $logic));
405 }
406
407 sub _where_to_dq {
408   my ($self, $where, $logic) = @_;
409
410   return undef unless defined($where);
411
412   # turn the convert misfeature on - only used in WHERE clauses
413   local $self->{where_convert} = $self->{convert};
414
415   return $self->_expr_to_dq($where, $logic);
416 }
417
418 sub _expr_to_dq {
419   my ($self, $where, $logic) = @_;
420
421   if (ref($where) eq 'ARRAY') {
422     return $self->_expr_to_dq_ARRAYREF($where, $logic);
423   } elsif (ref($where) eq 'HASH') {
424     return $self->_expr_to_dq_HASHREF($where, $logic);
425   } elsif (
426     ref($where) eq 'SCALAR'
427     or (ref($where) eq 'REF' and ref($$where) eq 'ARRAY')
428   ) {
429     return $self->_literal_to_dq($$where);
430   } elsif (!ref($where) or Scalar::Util::blessed($where)) {
431     return $self->_value_to_dq($where);
432   }
433   die "Can't handle $where";
434 }
435
436 sub _expr_to_dq_ARRAYREF {
437   my ($self, $where, $logic) = @_;
438
439   $logic = uc($logic || $self->{logic} || 'OR');
440   $logic eq 'AND' or $logic eq 'OR' or puke "unknown logic: $logic";
441
442   return unless @$where;
443
444   my ($first, @rest) = @$where;
445
446   return $self->_expr_to_dq($first) unless @rest;
447
448   my $first_dq = do {
449     if (!ref($first)) {
450       $self->_where_hashpair_to_dq($first => shift(@rest));
451     } else {
452       $self->_expr_to_dq($first);
453     }
454   };
455
456   return $self->_expr_to_dq_ARRAYREF(\@rest, $logic) unless $first_dq;
457
458   $self->_op_to_dq(
459     $logic, $first_dq, $self->_expr_to_dq_ARRAYREF(\@rest, $logic)
460   );
461 }
462
463 sub _expr_to_dq_HASHREF {
464   my ($self, $where, $logic) = @_;
465
466   $logic = uc($logic) if $logic;
467
468   my @dq = map {
469     $self->_where_hashpair_to_dq($_ => $where->{$_}, $logic)
470   } sort keys %$where;
471
472   return $dq[0] unless @dq > 1;
473
474   my $final = pop(@dq);
475
476   foreach my $dq (reverse @dq) {
477     $final = $self->_op_to_dq($logic||'AND', $dq, $final);
478   }
479
480   return $final;
481 }
482
483 sub _where_to_dq_SCALAR {
484   shift->_value_to_dq(@_);
485 }
486
487 sub _where_op_IDENT {
488   my $self = shift;
489   my ($op, $rhs) = splice @_, -2;
490   if (ref $rhs) {
491     puke "-$op takes a single scalar argument (a quotable identifier)";
492   }
493
494   # in case we are called as a top level special op (no '=')
495   my $lhs = shift;
496
497   $_ = $self->_convert($self->_quote($_)) for ($lhs, $rhs);
498
499   return $lhs
500     ? "$lhs = $rhs"
501     : $rhs
502   ;
503 }
504
505 sub _where_op_VALUE {
506   my $self = shift;
507   my ($op, $rhs) = splice @_, -2;
508
509   # in case we are called as a top level special op (no '=')
510   my $lhs = shift;
511
512   my @bind =
513     $self->_bindtype (
514       ($lhs || $self->{_nested_func_lhs}),
515       $rhs,
516     )
517   ;
518
519   return $lhs
520     ? (
521       $self->_convert($self->_quote($lhs)) . ' = ' . $self->_convert('?'),
522       @bind
523     )
524     : (
525       $self->_convert('?'),
526       @bind,
527     )
528   ;
529 }
530
531 sub _where_hashpair_to_dq {
532   my ($self, $k, $v, $logic) = @_;
533
534   if ($k =~ /^-(.*)/s) {
535     my $op = uc($1);
536     if ($op eq 'AND' or $op eq 'OR') {
537       return $self->_expr_to_dq($v, $op);
538     } elsif ($op eq 'NEST') {
539       return $self->_expr_to_dq($v);
540     } elsif ($op eq 'NOT') {
541       return $self->_op_to_dq(NOT => $self->_expr_to_dq($v));
542     } elsif ($op eq 'BOOL') {
543       return ref($v) ? $self->_expr_to_dq($v) : $self->_ident_to_dq($v);
544     } elsif ($op eq 'NOT_BOOL') {
545       return $self->_op_to_dq(
546         NOT => ref($v) ? $self->_expr_to_dq($v) : $self->_ident_to_dq($v)
547       );
548     } elsif ($op =~ /^(?:AND|OR|NEST)_?\d+/) {
549       die "Use of [and|or|nest]_N modifiers is no longer supported";
550     } else {
551       my @args = do {
552         if (ref($v) eq 'HASH' and keys(%$v) == 1 and (keys %$v)[0] =~ /^-(.*)/s) {
553           my $op = uc($1);
554           my ($inner) = values %$v;
555           $self->_op_to_dq(
556             $op,
557             (map $self->_expr_to_dq($_),
558               (ref($inner) eq 'ARRAY' ? @$inner : $inner))
559           );
560         } else {
561           (map $self->_expr_to_dq($_), (ref($v) eq 'ARRAY' ? @$v : $v))
562         }
563       };
564       $self->_assert_pass_injection_guard($op);
565       return $self->_op_to_dq(
566         apply => $self->_ident_to_dq($op), @args
567       );
568     }
569   } else {
570     local our $Cur_Col_Meta = $k;
571     if (ref($v) eq 'ARRAY') {
572       if (!@$v) {
573         return $self->_literal_to_dq($self->{sqlfalse});
574       } elsif (defined($v->[0]) && $v->[0] =~ /-(and|or)/i) {
575         return $self->_expr_to_dq_ARRAYREF([
576           map +{ $k => $_ }, @{$v}[1..$#$v]
577         ], uc($1));
578       }
579       return $self->_expr_to_dq_ARRAYREF([
580         map +{ $k => $_ }, @$v
581       ], $logic);
582     } elsif (ref($v) eq 'SCALAR' or (ref($v) eq 'REF' and ref($$v) eq 'ARRAY')) {
583       return +{
584         type => DQ_LITERAL,
585         subtype => 'SQL',
586         parts => [ $self->_ident_to_dq($k), $self->_literal_to_dq($$v) ]
587       };
588     }
589     my ($op, $rhs) = do {
590       if (ref($v) eq 'HASH') {
591         if (keys %$v > 1) {
592           return $self->_expr_to_dq_ARRAYREF([
593             map +{ $k => { $_ => $v->{$_} } }, sort keys %$v
594           ], $logic||'AND');
595         }
596         my ($op, $value) = %$v;
597         s/^-//, s/_/ /g for $op;
598         if ($op =~ /^(and|or)$/i) {
599           return $self->_expr_to_dq({ $k => $value }, $op);
600         } elsif (
601           my $special_op = List::Util::first {$op =~ $_->{regex}}
602                              @{$self->{special_ops}}
603         ) {
604           return $self->_literal_to_dq(
605             [ $self->${\$special_op->{handler}}($k, $op, $value) ]
606           );;
607         } elsif ($op =~ /^(?:AND|OR|NEST)_?\d+$/i) {
608           die "Use of [and|or|nest]_N modifiers is no longer supported";
609         }
610         (uc($op), $value);
611       } else {
612         ($self->{cmp}, $v);
613       }
614     };
615     if ($op eq 'BETWEEN' or $op eq 'IN' or $op eq 'NOT IN' or $op eq 'NOT BETWEEN') {
616       if (ref($rhs) ne 'ARRAY') {
617         if ($op =~ /IN$/) {
618           # have to add parens if none present because -in => \"SELECT ..."
619           # got documented. mst hates everything.
620           if (ref($rhs) eq 'SCALAR') {
621             my $x = $$rhs;
622             1 while ($x =~ s/\A\s*\((.*)\)\s*\Z/$1/s);
623             $rhs = \$x;
624           } else {
625             my ($x, @rest) = @{$$rhs};
626             1 while ($x =~ s/\A\s*\((.*)\)\s*\Z/$1/s);
627             $rhs = \[ $x, @rest ];
628           }
629         }
630         return $self->_op_to_dq(
631           $op, $self->_ident_to_dq($k), $self->_literal_to_dq($$rhs)
632         );
633       }
634       return $self->_literal_to_dq($self->{sqlfalse}) unless @$rhs;
635       return $self->_op_to_dq(
636         $op, $self->_ident_to_dq($k), map $self->_expr_to_dq($_), @$rhs
637       )
638     } elsif ($op =~ s/^NOT (?!LIKE)//) {
639       return $self->_where_hashpair_to_dq(-not => { $k => { $op => $rhs } });
640     } elsif (!defined($rhs)) {
641       my $null_op = do {
642         if ($op eq '=' or $op eq 'LIKE') {
643           'IS NULL'
644         } elsif ($op eq '!=') {
645           'IS NOT NULL'
646         } else {
647           die "Can't do undef -> NULL transform for operator ${op}";
648         }
649       };
650       return $self->_op_to_dq($null_op, $self->_ident_to_dq($k));
651     }
652     if (ref($rhs) eq 'ARRAY') {
653       if (!@$rhs) {
654         return $self->_literal_to_dq(
655           $op eq '!=' ? $self->{sqltrue} : $self->{sqlfalse}
656         );
657       } elsif (defined($rhs->[0]) and $rhs->[0] =~ /^-(and|or)$/i) {
658         return $self->_expr_to_dq_ARRAYREF([
659           map +{ $k => { $op => $_ } }, @{$rhs}[1..$#$rhs]
660         ], uc($1));
661       } elsif ($op =~ /^-(?:AND|OR|NEST)_?\d+/) {
662         die "Use of [and|or|nest]_N modifiers is no longer supported";
663       }
664       return $self->_expr_to_dq_ARRAYREF([
665         map +{ $k => { $op => $_ } }, @$rhs
666       ]);
667     }
668     return $self->_op_to_dq(
669       $op, $self->_ident_to_dq($k), $self->_expr_to_dq($rhs)
670     );
671   }
672 }
673
674 #======================================================================
675 # ORDER BY
676 #======================================================================
677
678 sub _order_by {
679   my ($self, $arg) = @_;
680   if (my $dq = $self->_order_by_to_dq($arg)) {
681     # SQLA generates ' ORDER BY foo'. The hilarity.
682     wantarray
683       ? do { my @r = $self->_render_dq($dq); $r[0] = ' '.$r[0]; @r }
684       : ' '.$self->_render_dq($dq);
685   } else {
686     '';
687   }
688 }
689
690 sub _order_by_to_dq {
691   my ($self, $arg, $dir, $from) = @_;
692
693   return unless $arg;
694
695   my $dq = {
696     type => DQ_ORDER,
697     ($dir ? (direction => $dir) : ()),
698     ($from ? (from => $from) : ()),
699   };
700
701   if (!ref($arg)) {
702     $dq->{by} = $self->_ident_to_dq($arg);
703   } elsif (ref($arg) eq 'ARRAY') {
704     return unless @$arg;
705     local our $Order_Inner unless our $Order_Recursing;
706     local $Order_Recursing = 1;
707     my ($outer, $inner);
708     foreach my $member (@$arg) {
709       local $Order_Inner;
710       my $next = $self->_order_by_to_dq($member, $dir, $from);
711       $outer ||= $next;
712       $inner->{from} = $next if $inner;
713       $inner = $Order_Inner || $next;
714     }
715     $Order_Inner = $inner;
716     return $outer;
717   } elsif (ref($arg) eq 'REF' and ref($$arg) eq 'ARRAY') {
718     $dq->{by} = $self->_literal_to_dq($$arg);
719   } elsif (ref($arg) eq 'SCALAR') {
720     $dq->{by} = $self->_literal_to_dq($$arg);
721   } elsif (ref($arg) eq 'HASH') {
722     my ($key, $val, @rest) = %$arg;
723
724     return unless $key;
725
726     if (@rest or not $key =~ /^-(desc|asc)/i) {
727       puke "hash passed to _order_by must have exactly one key (-desc or -asc)";
728     }
729     my $dir = uc $1;
730     return $self->_order_by_to_dq($val, $dir, $from);
731   } else {
732     die "Can't handle $arg in _order_by_to_dq";
733   }
734   return $dq;
735 }
736
737 #======================================================================
738 # DATASOURCE (FOR NOW, JUST PLAIN TABLE OR LIST OF TABLES)
739 #======================================================================
740
741 sub _table  {
742   my ($self, $from) = @_;
743   $self->_render_dq($self->_table_to_dq($from));
744 }
745
746 sub _table_to_dq {
747   my ($self, $from) = @_;
748   if (ref($from) eq 'ARRAY') {
749     die "Empty FROM list" unless my @f = @$from;
750     my $dq = $self->_ident_to_dq(shift @f);
751     while (my $x = shift @f) {
752       $dq = {
753         type => DQ_JOIN,
754         join => [ $dq, $self->_ident_to_dq($x) ]
755       };
756     }
757     $dq;
758   } elsif (ref($from) eq 'SCALAR') {
759     +{
760       type => DQ_LITERAL,
761       subtype => 'SQL',
762       literal => $$from
763     }
764   } else {
765     $self->_ident_to_dq($from);
766   }
767 }
768
769
770 #======================================================================
771 # UTILITY FUNCTIONS
772 #======================================================================
773
774 # highly optimized, as it's called way too often
775 sub _quote {
776   # my ($self, $label) = @_;
777
778   return '' unless defined $_[1];
779   return ${$_[1]} if ref($_[1]) eq 'SCALAR';
780
781   unless ($_[0]->{quote_char}) {
782     $_[0]->_assert_pass_injection_guard($_[1]);
783     return $_[1];
784   }
785
786   my $qref = ref $_[0]->{quote_char};
787   my ($l, $r);
788   if (!$qref) {
789     ($l, $r) = ( $_[0]->{quote_char}, $_[0]->{quote_char} );
790   }
791   elsif ($qref eq 'ARRAY') {
792     ($l, $r) = @{$_[0]->{quote_char}};
793   }
794   else {
795     puke "Unsupported quote_char format: $_[0]->{quote_char}";
796   }
797
798   # parts containing * are naturally unquoted
799   return join( $_[0]->{name_sep}||'', map
800     { $_ eq '*' ? $_ : $l . $_ . $r }
801     ( $_[0]->{name_sep} ? split (/\Q$_[0]->{name_sep}\E/, $_[1] ) : $_[1] )
802   );
803 }
804
805
806 # Conversion, if applicable
807 sub _convert ($) {
808   #my ($self, $arg) = @_;
809
810 # LDNOTE : modified the previous implementation below because
811 # it was not consistent : the first "return" is always an array,
812 # the second "return" is context-dependent. Anyway, _convert
813 # seems always used with just a single argument, so make it a
814 # scalar function.
815 #     return @_ unless $self->{convert};
816 #     my $conv = $self->_sqlcase($self->{convert});
817 #     my @ret = map { $conv.'('.$_.')' } @_;
818 #     return wantarray ? @ret : $ret[0];
819   if ($_[0]->{convert}) {
820     return $_[0]->_sqlcase($_[0]->{convert}) .'(' . $_[1] . ')';
821   }
822   return $_[1];
823 }
824
825 # And bindtype
826 sub _bindtype (@) {
827   #my ($self, $col, @vals) = @_;
828
829   #LDNOTE : changed original implementation below because it did not make
830   # sense when bindtype eq 'columns' and @vals > 1.
831 #  return $self->{bindtype} eq 'columns' ? [ $col, @vals ] : @vals;
832
833   # called often - tighten code
834   return $_[0]->{bindtype} eq 'columns'
835     ? map {[$_[1], $_]} @_[2 .. $#_]
836     : @_[2 .. $#_]
837   ;
838 }
839
840 # Dies if any element of @bind is not in [colname => value] format
841 # if bindtype is 'columns'.
842 sub _assert_bindval_matches_bindtype {
843 #  my ($self, @bind) = @_;
844   my $self = shift;
845   if ($self->{bindtype} eq 'columns') {
846     for (@_) {
847       if (!defined $_ || ref($_) ne 'ARRAY' || @$_ != 2) {
848         puke "bindtype 'columns' selected, you need to pass: [column_name => bind_value]"
849       }
850     }
851   }
852 }
853
854 sub _join_sql_clauses {
855   my ($self, $logic, $clauses_aref, $bind_aref) = @_;
856
857   if (@$clauses_aref > 1) {
858     my $join  = " " . $self->_sqlcase($logic) . " ";
859     my $sql = '( ' . join($join, @$clauses_aref) . ' )';
860     return ($sql, @$bind_aref);
861   }
862   elsif (@$clauses_aref) {
863     return ($clauses_aref->[0], @$bind_aref); # no parentheses
864   }
865   else {
866     return (); # if no SQL, ignore @$bind_aref
867   }
868 }
869
870
871 # Fix SQL case, if so requested
872 sub _sqlcase {
873   # LDNOTE: if $self->{case} is true, then it contains 'lower', so we
874   # don't touch the argument ... crooked logic, but let's not change it!
875   return $_[0]->{case} ? $_[1] : uc($_[1]);
876 }
877
878
879 #======================================================================
880 # DISPATCHING FROM REFKIND
881 #======================================================================
882
883 sub _refkind {
884   my ($self, $data) = @_;
885
886   return 'UNDEF' unless defined $data;
887
888   # blessed objects are treated like scalars
889   my $ref = (Scalar::Util::blessed $data) ? '' : ref $data;
890
891   return 'SCALAR' unless $ref;
892
893   my $n_steps = 1;
894   while ($ref eq 'REF') {
895     $data = $$data;
896     $ref = (Scalar::Util::blessed $data) ? '' : ref $data;
897     $n_steps++ if $ref;
898   }
899
900   return ($ref||'SCALAR') . ('REF' x $n_steps);
901 }
902
903 sub _try_refkind {
904   my ($self, $data) = @_;
905   my @try = ($self->_refkind($data));
906   push @try, 'SCALAR_or_UNDEF' if $try[0] eq 'SCALAR' || $try[0] eq 'UNDEF';
907   push @try, 'FALLBACK';
908   return \@try;
909 }
910
911 sub _METHOD_FOR_refkind {
912   my ($self, $meth_prefix, $data) = @_;
913
914   my $method;
915   for (@{$self->_try_refkind($data)}) {
916     $method = $self->can($meth_prefix."_".$_)
917       and last;
918   }
919
920   return $method || puke "cannot dispatch on '$meth_prefix' for ".$self->_refkind($data);
921 }
922
923
924 sub _SWITCH_refkind {
925   my ($self, $data, $dispatch_table) = @_;
926
927   my $coderef;
928   for (@{$self->_try_refkind($data)}) {
929     $coderef = $dispatch_table->{$_}
930       and last;
931   }
932
933   puke "no dispatch entry for ".$self->_refkind($data)
934     unless $coderef;
935
936   $coderef->();
937 }
938
939
940
941
942 #======================================================================
943 # VALUES, GENERATE, AUTOLOAD
944 #======================================================================
945
946 # LDNOTE: original code from nwiger, didn't touch code in that section
947 # I feel the AUTOLOAD stuff should not be the default, it should
948 # only be activated on explicit demand by user.
949
950 sub values {
951     my $self = shift;
952     my $data = shift || return;
953     puke "Argument to ", __PACKAGE__, "->values must be a \\%hash"
954         unless ref $data eq 'HASH';
955
956     my @all_bind;
957     foreach my $k ( sort keys %$data ) {
958         my $v = $data->{$k};
959         local our $Cur_Col_Meta = $k;
960         my ($sql, @bind) = $self->_render_dq(
961             $self->_mutation_rhs_to_dq($v)
962         );
963         push @all_bind, @bind;
964     }
965
966     return @all_bind;
967 }
968
969 sub generate {
970     my $self  = shift;
971
972     my(@sql, @sqlq, @sqlv);
973
974     for (@_) {
975         my $ref = ref $_;
976         if ($ref eq 'HASH') {
977             for my $k (sort keys %$_) {
978                 my $v = $_->{$k};
979                 my $r = ref $v;
980                 my $label = $self->_quote($k);
981                 if ($r eq 'ARRAY') {
982                     # literal SQL with bind
983                     my ($sql, @bind) = @$v;
984                     $self->_assert_bindval_matches_bindtype(@bind);
985                     push @sqlq, "$label = $sql";
986                     push @sqlv, @bind;
987                 } elsif ($r eq 'SCALAR') {
988                     # literal SQL without bind
989                     push @sqlq, "$label = $$v";
990                 } else {
991                     push @sqlq, "$label = ?";
992                     push @sqlv, $self->_bindtype($k, $v);
993                 }
994             }
995             push @sql, $self->_sqlcase('set'), join ', ', @sqlq;
996         } elsif ($ref eq 'ARRAY') {
997             # unlike insert(), assume these are ONLY the column names, i.e. for SQL
998             for my $v (@$_) {
999                 my $r = ref $v;
1000                 if ($r eq 'ARRAY') {   # literal SQL with bind
1001                     my ($sql, @bind) = @$v;
1002                     $self->_assert_bindval_matches_bindtype(@bind);
1003                     push @sqlq, $sql;
1004                     push @sqlv, @bind;
1005                 } elsif ($r eq 'SCALAR') {  # literal SQL without bind
1006                     # embedded literal SQL
1007                     push @sqlq, $$v;
1008                 } else {
1009                     push @sqlq, '?';
1010                     push @sqlv, $v;
1011                 }
1012             }
1013             push @sql, '(' . join(', ', @sqlq) . ')';
1014         } elsif ($ref eq 'SCALAR') {
1015             # literal SQL
1016             push @sql, $$_;
1017         } else {
1018             # strings get case twiddled
1019             push @sql, $self->_sqlcase($_);
1020         }
1021     }
1022
1023     my $sql = join ' ', @sql;
1024
1025     # this is pretty tricky
1026     # if ask for an array, return ($stmt, @bind)
1027     # otherwise, s/?/shift @sqlv/ to put it inline
1028     if (wantarray) {
1029         return ($sql, @sqlv);
1030     } else {
1031         1 while $sql =~ s/\?/my $d = shift(@sqlv);
1032                              ref $d ? $d->[1] : $d/e;
1033         return $sql;
1034     }
1035 }
1036
1037
1038 sub DESTROY { 1 }
1039
1040 #sub AUTOLOAD {
1041 #    # This allows us to check for a local, then _form, attr
1042 #    my $self = shift;
1043 #    my($name) = $AUTOLOAD =~ /.*::(.+)/;
1044 #    return $self->generate($name, @_);
1045 #}
1046
1047 1;
1048
1049
1050
1051 __END__
1052
1053 =head1 NAME
1054
1055 SQL::Abstract - Generate SQL from Perl data structures
1056
1057 =head1 SYNOPSIS
1058
1059     use SQL::Abstract;
1060
1061     my $sql = SQL::Abstract->new;
1062
1063     my($stmt, @bind) = $sql->select($table, \@fields, \%where, \@order);
1064
1065     my($stmt, @bind) = $sql->insert($table, \%fieldvals || \@values);
1066
1067     my($stmt, @bind) = $sql->update($table, \%fieldvals, \%where);
1068
1069     my($stmt, @bind) = $sql->delete($table, \%where);
1070
1071     # Then, use these in your DBI statements
1072     my $sth = $dbh->prepare($stmt);
1073     $sth->execute(@bind);
1074
1075     # Just generate the WHERE clause
1076     my($stmt, @bind) = $sql->where(\%where, \@order);
1077
1078     # Return values in the same order, for hashed queries
1079     # See PERFORMANCE section for more details
1080     my @bind = $sql->values(\%fieldvals);
1081
1082 =head1 DESCRIPTION
1083
1084 This module was inspired by the excellent L<DBIx::Abstract>.
1085 However, in using that module I found that what I really wanted
1086 to do was generate SQL, but still retain complete control over my
1087 statement handles and use the DBI interface. So, I set out to
1088 create an abstract SQL generation module.
1089
1090 While based on the concepts used by L<DBIx::Abstract>, there are
1091 several important differences, especially when it comes to WHERE
1092 clauses. I have modified the concepts used to make the SQL easier
1093 to generate from Perl data structures and, IMO, more intuitive.
1094 The underlying idea is for this module to do what you mean, based
1095 on the data structures you provide it. The big advantage is that
1096 you don't have to modify your code every time your data changes,
1097 as this module figures it out.
1098
1099 To begin with, an SQL INSERT is as easy as just specifying a hash
1100 of C<key=value> pairs:
1101
1102     my %data = (
1103         name => 'Jimbo Bobson',
1104         phone => '123-456-7890',
1105         address => '42 Sister Lane',
1106         city => 'St. Louis',
1107         state => 'Louisiana',
1108     );
1109
1110 The SQL can then be generated with this:
1111
1112     my($stmt, @bind) = $sql->insert('people', \%data);
1113
1114 Which would give you something like this:
1115
1116     $stmt = "INSERT INTO people
1117                     (address, city, name, phone, state)
1118                     VALUES (?, ?, ?, ?, ?)";
1119     @bind = ('42 Sister Lane', 'St. Louis', 'Jimbo Bobson',
1120              '123-456-7890', 'Louisiana');
1121
1122 These are then used directly in your DBI code:
1123
1124     my $sth = $dbh->prepare($stmt);
1125     $sth->execute(@bind);
1126
1127 =head2 Inserting and Updating Arrays
1128
1129 If your database has array types (like for example Postgres),
1130 activate the special option C<< array_datatypes => 1 >>
1131 when creating the C<SQL::Abstract> object.
1132 Then you may use an arrayref to insert and update database array types:
1133
1134     my $sql = SQL::Abstract->new(array_datatypes => 1);
1135     my %data = (
1136         planets => [qw/Mercury Venus Earth Mars/]
1137     );
1138
1139     my($stmt, @bind) = $sql->insert('solar_system', \%data);
1140
1141 This results in:
1142
1143     $stmt = "INSERT INTO solar_system (planets) VALUES (?)"
1144
1145     @bind = (['Mercury', 'Venus', 'Earth', 'Mars']);
1146
1147
1148 =head2 Inserting and Updating SQL
1149
1150 In order to apply SQL functions to elements of your C<%data> you may
1151 specify a reference to an arrayref for the given hash value. For example,
1152 if you need to execute the Oracle C<to_date> function on a value, you can
1153 say something like this:
1154
1155     my %data = (
1156         name => 'Bill',
1157         date_entered => \["to_date(?,'MM/DD/YYYY')", "03/02/2003"],
1158     );
1159
1160 The first value in the array is the actual SQL. Any other values are
1161 optional and would be included in the bind values array. This gives
1162 you:
1163
1164     my($stmt, @bind) = $sql->insert('people', \%data);
1165
1166     $stmt = "INSERT INTO people (name, date_entered)
1167                 VALUES (?, to_date(?,'MM/DD/YYYY'))";
1168     @bind = ('Bill', '03/02/2003');
1169
1170 An UPDATE is just as easy, all you change is the name of the function:
1171
1172     my($stmt, @bind) = $sql->update('people', \%data);
1173
1174 Notice that your C<%data> isn't touched; the module will generate
1175 the appropriately quirky SQL for you automatically. Usually you'll
1176 want to specify a WHERE clause for your UPDATE, though, which is
1177 where handling C<%where> hashes comes in handy...
1178
1179 =head2 Complex where statements
1180
1181 This module can generate pretty complicated WHERE statements
1182 easily. For example, simple C<key=value> pairs are taken to mean
1183 equality, and if you want to see if a field is within a set
1184 of values, you can use an arrayref. Let's say we wanted to
1185 SELECT some data based on this criteria:
1186
1187     my %where = (
1188        requestor => 'inna',
1189        worker => ['nwiger', 'rcwe', 'sfz'],
1190        status => { '!=', 'completed' }
1191     );
1192
1193     my($stmt, @bind) = $sql->select('tickets', '*', \%where);
1194
1195 The above would give you something like this:
1196
1197     $stmt = "SELECT * FROM tickets WHERE
1198                 ( requestor = ? ) AND ( status != ? )
1199                 AND ( worker = ? OR worker = ? OR worker = ? )";
1200     @bind = ('inna', 'completed', 'nwiger', 'rcwe', 'sfz');
1201
1202 Which you could then use in DBI code like so:
1203
1204     my $sth = $dbh->prepare($stmt);
1205     $sth->execute(@bind);
1206
1207 Easy, eh?
1208
1209 =head1 FUNCTIONS
1210
1211 The functions are simple. There's one for each major SQL operation,
1212 and a constructor you use first. The arguments are specified in a
1213 similar order to each function (table, then fields, then a where
1214 clause) to try and simplify things.
1215
1216
1217
1218
1219 =head2 new(option => 'value')
1220
1221 The C<new()> function takes a list of options and values, and returns
1222 a new B<SQL::Abstract> object which can then be used to generate SQL
1223 through the methods below. The options accepted are:
1224
1225 =over
1226
1227 =item case
1228
1229 If set to 'lower', then SQL will be generated in all lowercase. By
1230 default SQL is generated in "textbook" case meaning something like:
1231
1232     SELECT a_field FROM a_table WHERE some_field LIKE '%someval%'
1233
1234 Any setting other than 'lower' is ignored.
1235
1236 =item cmp
1237
1238 This determines what the default comparison operator is. By default
1239 it is C<=>, meaning that a hash like this:
1240
1241     %where = (name => 'nwiger', email => 'nate@wiger.org');
1242
1243 Will generate SQL like this:
1244
1245     WHERE name = 'nwiger' AND email = 'nate@wiger.org'
1246
1247 However, you may want loose comparisons by default, so if you set
1248 C<cmp> to C<like> you would get SQL such as:
1249
1250     WHERE name like 'nwiger' AND email like 'nate@wiger.org'
1251
1252 You can also override the comparsion on an individual basis - see
1253 the huge section on L</"WHERE CLAUSES"> at the bottom.
1254
1255 =item sqltrue, sqlfalse
1256
1257 Expressions for inserting boolean values within SQL statements.
1258 By default these are C<1=1> and C<1=0>. They are used
1259 by the special operators C<-in> and C<-not_in> for generating
1260 correct SQL even when the argument is an empty array (see below).
1261
1262 =item logic
1263
1264 This determines the default logical operator for multiple WHERE
1265 statements in arrays or hashes. If absent, the default logic is "or"
1266 for arrays, and "and" for hashes. This means that a WHERE
1267 array of the form:
1268
1269     @where = (
1270         event_date => {'>=', '2/13/99'},
1271         event_date => {'<=', '4/24/03'},
1272     );
1273
1274 will generate SQL like this:
1275
1276     WHERE event_date >= '2/13/99' OR event_date <= '4/24/03'
1277
1278 This is probably not what you want given this query, though (look
1279 at the dates). To change the "OR" to an "AND", simply specify:
1280
1281     my $sql = SQL::Abstract->new(logic => 'and');
1282
1283 Which will change the above C<WHERE> to:
1284
1285     WHERE event_date >= '2/13/99' AND event_date <= '4/24/03'
1286
1287 The logic can also be changed locally by inserting
1288 a modifier in front of an arrayref :
1289
1290     @where = (-and => [event_date => {'>=', '2/13/99'},
1291                        event_date => {'<=', '4/24/03'} ]);
1292
1293 See the L</"WHERE CLAUSES"> section for explanations.
1294
1295 =item convert
1296
1297 This will automatically convert comparisons using the specified SQL
1298 function for both column and value. This is mostly used with an argument
1299 of C<upper> or C<lower>, so that the SQL will have the effect of
1300 case-insensitive "searches". For example, this:
1301
1302     $sql = SQL::Abstract->new(convert => 'upper');
1303     %where = (keywords => 'MaKe iT CAse inSeNSItive');
1304
1305 Will turn out the following SQL:
1306
1307     WHERE upper(keywords) like upper('MaKe iT CAse inSeNSItive')
1308
1309 The conversion can be C<upper()>, C<lower()>, or any other SQL function
1310 that can be applied symmetrically to fields (actually B<SQL::Abstract> does
1311 not validate this option; it will just pass through what you specify verbatim).
1312
1313 =item bindtype
1314
1315 This is a kludge because many databases suck. For example, you can't
1316 just bind values using DBI's C<execute()> for Oracle C<CLOB> or C<BLOB> fields.
1317 Instead, you have to use C<bind_param()>:
1318
1319     $sth->bind_param(1, 'reg data');
1320     $sth->bind_param(2, $lots, {ora_type => ORA_CLOB});
1321
1322 The problem is, B<SQL::Abstract> will normally just return a C<@bind> array,
1323 which loses track of which field each slot refers to. Fear not.
1324
1325 If you specify C<bindtype> in new, you can determine how C<@bind> is returned.
1326 Currently, you can specify either C<normal> (default) or C<columns>. If you
1327 specify C<columns>, you will get an array that looks like this:
1328
1329     my $sql = SQL::Abstract->new(bindtype => 'columns');
1330     my($stmt, @bind) = $sql->insert(...);
1331
1332     @bind = (
1333         [ 'column1', 'value1' ],
1334         [ 'column2', 'value2' ],
1335         [ 'column3', 'value3' ],
1336     );
1337
1338 You can then iterate through this manually, using DBI's C<bind_param()>.
1339
1340     $sth->prepare($stmt);
1341     my $i = 1;
1342     for (@bind) {
1343         my($col, $data) = @$_;
1344         if ($col eq 'details' || $col eq 'comments') {
1345             $sth->bind_param($i, $data, {ora_type => ORA_CLOB});
1346         } elsif ($col eq 'image') {
1347             $sth->bind_param($i, $data, {ora_type => ORA_BLOB});
1348         } else {
1349             $sth->bind_param($i, $data);
1350         }
1351         $i++;
1352     }
1353     $sth->execute;      # execute without @bind now
1354
1355 Now, why would you still use B<SQL::Abstract> if you have to do this crap?
1356 Basically, the advantage is still that you don't have to care which fields
1357 are or are not included. You could wrap that above C<for> loop in a simple
1358 sub called C<bind_fields()> or something and reuse it repeatedly. You still
1359 get a layer of abstraction over manual SQL specification.
1360
1361 Note that if you set L</bindtype> to C<columns>, the C<\[$sql, @bind]>
1362 construct (see L</Literal SQL with placeholders and bind values (subqueries)>)
1363 will expect the bind values in this format.
1364
1365 =item quote_char
1366
1367 This is the character that a table or column name will be quoted
1368 with.  By default this is an empty string, but you could set it to
1369 the character C<`>, to generate SQL like this:
1370
1371   SELECT `a_field` FROM `a_table` WHERE `some_field` LIKE '%someval%'
1372
1373 Alternatively, you can supply an array ref of two items, the first being the left
1374 hand quote character, and the second the right hand quote character. For
1375 example, you could supply C<['[',']']> for SQL Server 2000 compliant quotes
1376 that generates SQL like this:
1377
1378   SELECT [a_field] FROM [a_table] WHERE [some_field] LIKE '%someval%'
1379
1380 Quoting is useful if you have tables or columns names that are reserved
1381 words in your database's SQL dialect.
1382
1383 =item name_sep
1384
1385 This is the character that separates a table and column name.  It is
1386 necessary to specify this when the C<quote_char> option is selected,
1387 so that tables and column names can be individually quoted like this:
1388
1389   SELECT `table`.`one_field` FROM `table` WHERE `table`.`other_field` = 1
1390
1391 =item injection_guard
1392
1393 A regular expression C<qr/.../> that is applied to any C<-function> and unquoted
1394 column name specified in a query structure. This is a safety mechanism to avoid
1395 injection attacks when mishandling user input e.g.:
1396
1397   my %condition_as_column_value_pairs = get_values_from_user();
1398   $sqla->select( ... , \%condition_as_column_value_pairs );
1399
1400 If the expression matches an exception is thrown. Note that literal SQL
1401 supplied via C<\'...'> or C<\['...']> is B<not> checked in any way.
1402
1403 Defaults to checking for C<;> and the C<GO> keyword (TransactSQL)
1404
1405 =item array_datatypes
1406
1407 When this option is true, arrayrefs in INSERT or UPDATE are
1408 interpreted as array datatypes and are passed directly
1409 to the DBI layer.
1410 When this option is false, arrayrefs are interpreted
1411 as literal SQL, just like refs to arrayrefs
1412 (but this behavior is for backwards compatibility; when writing
1413 new queries, use the "reference to arrayref" syntax
1414 for literal SQL).
1415
1416
1417 =item special_ops
1418
1419 Takes a reference to a list of "special operators"
1420 to extend the syntax understood by L<SQL::Abstract>.
1421 See section L</"SPECIAL OPERATORS"> for details.
1422
1423 =item unary_ops
1424
1425 Takes a reference to a list of "unary operators"
1426 to extend the syntax understood by L<SQL::Abstract>.
1427 See section L</"UNARY OPERATORS"> for details.
1428
1429
1430
1431 =back
1432
1433 =head2 insert($table, \@values || \%fieldvals, \%options)
1434
1435 This is the simplest function. You simply give it a table name
1436 and either an arrayref of values or hashref of field/value pairs.
1437 It returns an SQL INSERT statement and a list of bind values.
1438 See the sections on L</"Inserting and Updating Arrays"> and
1439 L</"Inserting and Updating SQL"> for information on how to insert
1440 with those data types.
1441
1442 The optional C<\%options> hash reference may contain additional
1443 options to generate the insert SQL. Currently supported options
1444 are:
1445
1446 =over 4
1447
1448 =item returning
1449
1450 Takes either a scalar of raw SQL fields, or an array reference of
1451 field names, and adds on an SQL C<RETURNING> statement at the end.
1452 This allows you to return data generated by the insert statement
1453 (such as row IDs) without performing another C<SELECT> statement.
1454 Note, however, this is not part of the SQL standard and may not
1455 be supported by all database engines.
1456
1457 =back
1458
1459 =head2 update($table, \%fieldvals, \%where)
1460
1461 This takes a table, hashref of field/value pairs, and an optional
1462 hashref L<WHERE clause|/WHERE CLAUSES>. It returns an SQL UPDATE function and a list
1463 of bind values.
1464 See the sections on L</"Inserting and Updating Arrays"> and
1465 L</"Inserting and Updating SQL"> for information on how to insert
1466 with those data types.
1467
1468 =head2 select($source, $fields, $where, $order)
1469
1470 This returns a SQL SELECT statement and associated list of bind values, as
1471 specified by the arguments  :
1472
1473 =over
1474
1475 =item $source
1476
1477 Specification of the 'FROM' part of the statement.
1478 The argument can be either a plain scalar (interpreted as a table
1479 name, will be quoted), or an arrayref (interpreted as a list
1480 of table names, joined by commas, quoted), or a scalarref
1481 (literal table name, not quoted), or a ref to an arrayref
1482 (list of literal table names, joined by commas, not quoted).
1483
1484 =item $fields
1485
1486 Specification of the list of fields to retrieve from
1487 the source.
1488 The argument can be either an arrayref (interpreted as a list
1489 of field names, will be joined by commas and quoted), or a
1490 plain scalar (literal SQL, not quoted).
1491 Please observe that this API is not as flexible as for
1492 the first argument C<$table>, for backwards compatibility reasons.
1493
1494 =item $where
1495
1496 Optional argument to specify the WHERE part of the query.
1497 The argument is most often a hashref, but can also be
1498 an arrayref or plain scalar --
1499 see section L<WHERE clause|/"WHERE CLAUSES"> for details.
1500
1501 =item $order
1502
1503 Optional argument to specify the ORDER BY part of the query.
1504 The argument can be a scalar, a hashref or an arrayref
1505 -- see section L<ORDER BY clause|/"ORDER BY CLAUSES">
1506 for details.
1507
1508 =back
1509
1510
1511 =head2 delete($table, \%where)
1512
1513 This takes a table name and optional hashref L<WHERE clause|/WHERE CLAUSES>.
1514 It returns an SQL DELETE statement and list of bind values.
1515
1516 =head2 where(\%where, \@order)
1517
1518 This is used to generate just the WHERE clause. For example,
1519 if you have an arbitrary data structure and know what the
1520 rest of your SQL is going to look like, but want an easy way
1521 to produce a WHERE clause, use this. It returns an SQL WHERE
1522 clause and list of bind values.
1523
1524
1525 =head2 values(\%data)
1526
1527 This just returns the values from the hash C<%data>, in the same
1528 order that would be returned from any of the other above queries.
1529 Using this allows you to markedly speed up your queries if you
1530 are affecting lots of rows. See below under the L</"PERFORMANCE"> section.
1531
1532 =head2 generate($any, 'number', $of, \@data, $struct, \%types)
1533
1534 Warning: This is an experimental method and subject to change.
1535
1536 This returns arbitrarily generated SQL. It's a really basic shortcut.
1537 It will return two different things, depending on return context:
1538
1539     my($stmt, @bind) = $sql->generate('create table', \$table, \@fields);
1540     my $stmt_and_val = $sql->generate('create table', \$table, \@fields);
1541
1542 These would return the following:
1543
1544     # First calling form
1545     $stmt = "CREATE TABLE test (?, ?)";
1546     @bind = (field1, field2);
1547
1548     # Second calling form
1549     $stmt_and_val = "CREATE TABLE test (field1, field2)";
1550
1551 Depending on what you're trying to do, it's up to you to choose the correct
1552 format. In this example, the second form is what you would want.
1553
1554 By the same token:
1555
1556     $sql->generate('alter session', { nls_date_format => 'MM/YY' });
1557
1558 Might give you:
1559
1560     ALTER SESSION SET nls_date_format = 'MM/YY'
1561
1562 You get the idea. Strings get their case twiddled, but everything
1563 else remains verbatim.
1564
1565 =head1 WHERE CLAUSES
1566
1567 =head2 Introduction
1568
1569 This module uses a variation on the idea from L<DBIx::Abstract>. It
1570 is B<NOT>, repeat I<not> 100% compatible. B<The main logic of this
1571 module is that things in arrays are OR'ed, and things in hashes
1572 are AND'ed.>
1573
1574 The easiest way to explain is to show lots of examples. After
1575 each C<%where> hash shown, it is assumed you used:
1576
1577     my($stmt, @bind) = $sql->where(\%where);
1578
1579 However, note that the C<%where> hash can be used directly in any
1580 of the other functions as well, as described above.
1581
1582 =head2 Key-value pairs
1583
1584 So, let's get started. To begin, a simple hash:
1585
1586     my %where  = (
1587         user   => 'nwiger',
1588         status => 'completed'
1589     );
1590
1591 Is converted to SQL C<key = val> statements:
1592
1593     $stmt = "WHERE user = ? AND status = ?";
1594     @bind = ('nwiger', 'completed');
1595
1596 One common thing I end up doing is having a list of values that
1597 a field can be in. To do this, simply specify a list inside of
1598 an arrayref:
1599
1600     my %where  = (
1601         user   => 'nwiger',
1602         status => ['assigned', 'in-progress', 'pending'];
1603     );
1604
1605 This simple code will create the following:
1606
1607     $stmt = "WHERE user = ? AND ( status = ? OR status = ? OR status = ? )";
1608     @bind = ('nwiger', 'assigned', 'in-progress', 'pending');
1609
1610 A field associated to an empty arrayref will be considered a
1611 logical false and will generate 0=1.
1612
1613 =head2 Tests for NULL values
1614
1615 If the value part is C<undef> then this is converted to SQL <IS NULL>
1616
1617     my %where  = (
1618         user   => 'nwiger',
1619         status => undef,
1620     );
1621
1622 becomes:
1623
1624     $stmt = "WHERE user = ? AND status IS NULL";
1625     @bind = ('nwiger');
1626
1627 To test if a column IS NOT NULL:
1628
1629     my %where  = (
1630         user   => 'nwiger',
1631         status => { '!=', undef },
1632     );
1633
1634 =head2 Specific comparison operators
1635
1636 If you want to specify a different type of operator for your comparison,
1637 you can use a hashref for a given column:
1638
1639     my %where  = (
1640         user   => 'nwiger',
1641         status => { '!=', 'completed' }
1642     );
1643
1644 Which would generate:
1645
1646     $stmt = "WHERE user = ? AND status != ?";
1647     @bind = ('nwiger', 'completed');
1648
1649 To test against multiple values, just enclose the values in an arrayref:
1650
1651     status => { '=', ['assigned', 'in-progress', 'pending'] };
1652
1653 Which would give you:
1654
1655     "WHERE status = ? OR status = ? OR status = ?"
1656
1657
1658 The hashref can also contain multiple pairs, in which case it is expanded
1659 into an C<AND> of its elements:
1660
1661     my %where  = (
1662         user   => 'nwiger',
1663         status => { '!=', 'completed', -not_like => 'pending%' }
1664     );
1665
1666     # Or more dynamically, like from a form
1667     $where{user} = 'nwiger';
1668     $where{status}{'!='} = 'completed';
1669     $where{status}{'-not_like'} = 'pending%';
1670
1671     # Both generate this
1672     $stmt = "WHERE user = ? AND status != ? AND status NOT LIKE ?";
1673     @bind = ('nwiger', 'completed', 'pending%');
1674
1675
1676 To get an OR instead, you can combine it with the arrayref idea:
1677
1678     my %where => (
1679          user => 'nwiger',
1680          priority => [ { '=', 2 }, { '>', 5 } ]
1681     );
1682
1683 Which would generate:
1684
1685     $stmt = "WHERE ( priority = ? OR priority > ? ) AND user = ?";
1686     @bind = ('2', '5', 'nwiger');
1687
1688 If you want to include literal SQL (with or without bind values), just use a
1689 scalar reference or array reference as the value:
1690
1691     my %where  = (
1692         date_entered => { '>' => \["to_date(?, 'MM/DD/YYYY')", "11/26/2008"] },
1693         date_expires => { '<' => \"now()" }
1694     );
1695
1696 Which would generate:
1697
1698     $stmt = "WHERE date_entered > "to_date(?, 'MM/DD/YYYY') AND date_expires < now()";
1699     @bind = ('11/26/2008');
1700
1701
1702 =head2 Logic and nesting operators
1703
1704 In the example above,
1705 there is a subtle trap if you want to say something like
1706 this (notice the C<AND>):
1707
1708     WHERE priority != ? AND priority != ?
1709
1710 Because, in Perl you I<can't> do this:
1711
1712     priority => { '!=', 2, '!=', 1 }
1713
1714 As the second C<!=> key will obliterate the first. The solution
1715 is to use the special C<-modifier> form inside an arrayref:
1716
1717     priority => [ -and => {'!=', 2},
1718                           {'!=', 1} ]
1719
1720
1721 Normally, these would be joined by C<OR>, but the modifier tells it
1722 to use C<AND> instead. (Hint: You can use this in conjunction with the
1723 C<logic> option to C<new()> in order to change the way your queries
1724 work by default.) B<Important:> Note that the C<-modifier> goes
1725 B<INSIDE> the arrayref, as an extra first element. This will
1726 B<NOT> do what you think it might:
1727
1728     priority => -and => [{'!=', 2}, {'!=', 1}]   # WRONG!
1729
1730 Here is a quick list of equivalencies, since there is some overlap:
1731
1732     # Same
1733     status => {'!=', 'completed', 'not like', 'pending%' }
1734     status => [ -and => {'!=', 'completed'}, {'not like', 'pending%'}]
1735
1736     # Same
1737     status => {'=', ['assigned', 'in-progress']}
1738     status => [ -or => {'=', 'assigned'}, {'=', 'in-progress'}]
1739     status => [ {'=', 'assigned'}, {'=', 'in-progress'} ]
1740
1741
1742
1743 =head2 Special operators : IN, BETWEEN, etc.
1744
1745 You can also use the hashref format to compare a list of fields using the
1746 C<IN> comparison operator, by specifying the list as an arrayref:
1747
1748     my %where  = (
1749         status   => 'completed',
1750         reportid => { -in => [567, 2335, 2] }
1751     );
1752
1753 Which would generate:
1754
1755     $stmt = "WHERE status = ? AND reportid IN (?,?,?)";
1756     @bind = ('completed', '567', '2335', '2');
1757
1758 The reverse operator C<-not_in> generates SQL C<NOT IN> and is used in
1759 the same way.
1760
1761 If the argument to C<-in> is an empty array, 'sqlfalse' is generated
1762 (by default : C<1=0>). Similarly, C<< -not_in => [] >> generates
1763 'sqltrue' (by default : C<1=1>).
1764
1765 In addition to the array you can supply a chunk of literal sql or
1766 literal sql with bind:
1767
1768     my %where = {
1769       customer => { -in => \[
1770         'SELECT cust_id FROM cust WHERE balance > ?',
1771         2000,
1772       ],
1773       status => { -in => \'SELECT status_codes FROM states' },
1774     };
1775
1776 would generate:
1777
1778     $stmt = "WHERE (
1779           customer IN ( SELECT cust_id FROM cust WHERE balance > ? )
1780       AND status IN ( SELECT status_codes FROM states )
1781     )";
1782     @bind = ('2000');
1783
1784
1785
1786 Another pair of operators is C<-between> and C<-not_between>,
1787 used with an arrayref of two values:
1788
1789     my %where  = (
1790         user   => 'nwiger',
1791         completion_date => {
1792            -not_between => ['2002-10-01', '2003-02-06']
1793         }
1794     );
1795
1796 Would give you:
1797
1798     WHERE user = ? AND completion_date NOT BETWEEN ( ? AND ? )
1799
1800 Just like with C<-in> all plausible combinations of literal SQL
1801 are possible:
1802
1803     my %where = {
1804       start0 => { -between => [ 1, 2 ] },
1805       start1 => { -between => \["? AND ?", 1, 2] },
1806       start2 => { -between => \"lower(x) AND upper(y)" },
1807       start3 => { -between => [
1808         \"lower(x)",
1809         \["upper(?)", 'stuff' ],
1810       ] },
1811     };
1812
1813 Would give you:
1814
1815     $stmt = "WHERE (
1816           ( start0 BETWEEN ? AND ?                )
1817       AND ( start1 BETWEEN ? AND ?                )
1818       AND ( start2 BETWEEN lower(x) AND upper(y)  )
1819       AND ( start3 BETWEEN lower(x) AND upper(?)  )
1820     )";
1821     @bind = (1, 2, 1, 2, 'stuff');
1822
1823
1824 These are the two builtin "special operators"; but the
1825 list can be expanded : see section L</"SPECIAL OPERATORS"> below.
1826
1827 =head2 Unary operators: bool
1828
1829 If you wish to test against boolean columns or functions within your
1830 database you can use the C<-bool> and C<-not_bool> operators. For
1831 example to test the column C<is_user> being true and the column
1832 C<is_enabled> being false you would use:-
1833
1834     my %where  = (
1835         -bool       => 'is_user',
1836         -not_bool   => 'is_enabled',
1837     );
1838
1839 Would give you:
1840
1841     WHERE is_user AND NOT is_enabled
1842
1843 If a more complex combination is required, testing more conditions,
1844 then you should use the and/or operators:-
1845
1846     my %where  = (
1847         -and           => [
1848             -bool      => 'one',
1849             -bool      => 'two',
1850             -bool      => 'three',
1851             -not_bool  => 'four',
1852         ],
1853     );
1854
1855 Would give you:
1856
1857     WHERE one AND two AND three AND NOT four
1858
1859
1860 =head2 Nested conditions, -and/-or prefixes
1861
1862 So far, we've seen how multiple conditions are joined with a top-level
1863 C<AND>.  We can change this by putting the different conditions we want in
1864 hashes and then putting those hashes in an array. For example:
1865
1866     my @where = (
1867         {
1868             user   => 'nwiger',
1869             status => { -like => ['pending%', 'dispatched'] },
1870         },
1871         {
1872             user   => 'robot',
1873             status => 'unassigned',
1874         }
1875     );
1876
1877 This data structure would create the following:
1878
1879     $stmt = "WHERE ( user = ? AND ( status LIKE ? OR status LIKE ? ) )
1880                 OR ( user = ? AND status = ? ) )";
1881     @bind = ('nwiger', 'pending', 'dispatched', 'robot', 'unassigned');
1882
1883
1884 Clauses in hashrefs or arrayrefs can be prefixed with an C<-and> or C<-or>
1885 to change the logic inside :
1886
1887     my @where = (
1888          -and => [
1889             user => 'nwiger',
1890             [
1891                 -and => [ workhrs => {'>', 20}, geo => 'ASIA' ],
1892                 -or => { workhrs => {'<', 50}, geo => 'EURO' },
1893             ],
1894         ],
1895     );
1896
1897 That would yield:
1898
1899     WHERE ( user = ? AND (
1900                ( workhrs > ? AND geo = ? )
1901             OR ( workhrs < ? OR geo = ? )
1902           ) )
1903
1904 =head3 Algebraic inconsistency, for historical reasons
1905
1906 C<Important note>: when connecting several conditions, the C<-and->|C<-or>
1907 operator goes C<outside> of the nested structure; whereas when connecting
1908 several constraints on one column, the C<-and> operator goes
1909 C<inside> the arrayref. Here is an example combining both features :
1910
1911    my @where = (
1912      -and => [a => 1, b => 2],
1913      -or  => [c => 3, d => 4],
1914       e   => [-and => {-like => 'foo%'}, {-like => '%bar'} ]
1915    )
1916
1917 yielding
1918
1919   WHERE ( (    ( a = ? AND b = ? )
1920             OR ( c = ? OR d = ? )
1921             OR ( e LIKE ? AND e LIKE ? ) ) )
1922
1923 This difference in syntax is unfortunate but must be preserved for
1924 historical reasons. So be careful : the two examples below would
1925 seem algebraically equivalent, but they are not
1926
1927   {col => [-and => {-like => 'foo%'}, {-like => '%bar'}]}
1928   # yields : WHERE ( ( col LIKE ? AND col LIKE ? ) )
1929
1930   [-and => {col => {-like => 'foo%'}, {col => {-like => '%bar'}}]]
1931   # yields : WHERE ( ( col LIKE ? OR col LIKE ? ) )
1932
1933
1934 =head2 Literal SQL and value type operators
1935
1936 The basic premise of SQL::Abstract is that in WHERE specifications the "left
1937 side" is a column name and the "right side" is a value (normally rendered as
1938 a placeholder). This holds true for both hashrefs and arrayref pairs as you
1939 see in the L</WHERE CLAUSES> examples above. Sometimes it is necessary to
1940 alter this behavior. There are several ways of doing so.
1941
1942 =head3 -ident
1943
1944 This is a virtual operator that signals the string to its right side is an
1945 identifier (a column name) and not a value. For example to compare two
1946 columns you would write:
1947
1948     my %where = (
1949         priority => { '<', 2 },
1950         requestor => { -ident => 'submitter' },
1951     );
1952
1953 which creates:
1954
1955     $stmt = "WHERE priority < ? AND requestor = submitter";
1956     @bind = ('2');
1957
1958 If you are maintaining legacy code you may see a different construct as
1959 described in L</Deprecated usage of Literal SQL>, please use C<-ident> in new
1960 code.
1961
1962 =head3 -value
1963
1964 This is a virtual operator that signals that the construct to its right side
1965 is a value to be passed to DBI. This is for example necessary when you want
1966 to write a where clause against an array (for RDBMS that support such
1967 datatypes). For example:
1968
1969     my %where = (
1970         array => { -value => [1, 2, 3] }
1971     );
1972
1973 will result in:
1974
1975     $stmt = 'WHERE array = ?';
1976     @bind = ([1, 2, 3]);
1977
1978 Note that if you were to simply say:
1979
1980     my %where = (
1981         array => [1, 2, 3]
1982     );
1983
1984 the result would porbably be not what you wanted:
1985
1986     $stmt = 'WHERE array = ? OR array = ? OR array = ?';
1987     @bind = (1, 2, 3);
1988
1989 =head3 Literal SQL
1990
1991 Finally, sometimes only literal SQL will do. To include a random snippet
1992 of SQL verbatim, you specify it as a scalar reference. Consider this only
1993 as a last resort. Usually there is a better way. For example:
1994
1995     my %where = (
1996         priority => { '<', 2 },
1997         requestor => { -in => \'(SELECT name FROM hitmen)' },
1998     );
1999
2000 Would create:
2001
2002     $stmt = "WHERE priority < ? AND requestor IN (SELECT name FROM hitmen)"
2003     @bind = (2);
2004
2005 Note that in this example, you only get one bind parameter back, since
2006 the verbatim SQL is passed as part of the statement.
2007
2008 =head4 CAVEAT
2009
2010   Never use untrusted input as a literal SQL argument - this is a massive
2011   security risk (there is no way to check literal snippets for SQL
2012   injections and other nastyness). If you need to deal with untrusted input
2013   use literal SQL with placeholders as described next.
2014
2015 =head3 Literal SQL with placeholders and bind values (subqueries)
2016
2017 If the literal SQL to be inserted has placeholders and bind values,
2018 use a reference to an arrayref (yes this is a double reference --
2019 not so common, but perfectly legal Perl). For example, to find a date
2020 in Postgres you can use something like this:
2021
2022     my %where = (
2023        date_column => \[q/= date '2008-09-30' - ?::integer/, 10/]
2024     )
2025
2026 This would create:
2027
2028     $stmt = "WHERE ( date_column = date '2008-09-30' - ?::integer )"
2029     @bind = ('10');
2030
2031 Note that you must pass the bind values in the same format as they are returned
2032 by L</where>. That means that if you set L</bindtype> to C<columns>, you must
2033 provide the bind values in the C<< [ column_meta => value ] >> format, where
2034 C<column_meta> is an opaque scalar value; most commonly the column name, but
2035 you can use any scalar value (including references and blessed references),
2036 L<SQL::Abstract> will simply pass it through intact. So if C<bindtype> is set
2037 to C<columns> the above example will look like:
2038
2039     my %where = (
2040        date_column => \[q/= date '2008-09-30' - ?::integer/, [ dummy => 10 ]/]
2041     )
2042
2043 Literal SQL is especially useful for nesting parenthesized clauses in the
2044 main SQL query. Here is a first example :
2045
2046   my ($sub_stmt, @sub_bind) = ("SELECT c1 FROM t1 WHERE c2 < ? AND c3 LIKE ?",
2047                                100, "foo%");
2048   my %where = (
2049     foo => 1234,
2050     bar => \["IN ($sub_stmt)" => @sub_bind],
2051   );
2052
2053 This yields :
2054
2055   $stmt = "WHERE (foo = ? AND bar IN (SELECT c1 FROM t1
2056                                              WHERE c2 < ? AND c3 LIKE ?))";
2057   @bind = (1234, 100, "foo%");
2058
2059 Other subquery operators, like for example C<"E<gt> ALL"> or C<"NOT IN">,
2060 are expressed in the same way. Of course the C<$sub_stmt> and
2061 its associated bind values can be generated through a former call
2062 to C<select()> :
2063
2064   my ($sub_stmt, @sub_bind)
2065      = $sql->select("t1", "c1", {c2 => {"<" => 100},
2066                                  c3 => {-like => "foo%"}});
2067   my %where = (
2068     foo => 1234,
2069     bar => \["> ALL ($sub_stmt)" => @sub_bind],
2070   );
2071
2072 In the examples above, the subquery was used as an operator on a column;
2073 but the same principle also applies for a clause within the main C<%where>
2074 hash, like an EXISTS subquery :
2075
2076   my ($sub_stmt, @sub_bind)
2077      = $sql->select("t1", "*", {c1 => 1, c2 => \"> t0.c0"});
2078   my %where = ( -and => [
2079     foo   => 1234,
2080     \["EXISTS ($sub_stmt)" => @sub_bind],
2081   ]);
2082
2083 which yields
2084
2085   $stmt = "WHERE (foo = ? AND EXISTS (SELECT * FROM t1
2086                                         WHERE c1 = ? AND c2 > t0.c0))";
2087   @bind = (1234, 1);
2088
2089
2090 Observe that the condition on C<c2> in the subquery refers to
2091 column C<t0.c0> of the main query : this is I<not> a bind
2092 value, so we have to express it through a scalar ref.
2093 Writing C<< c2 => {">" => "t0.c0"} >> would have generated
2094 C<< c2 > ? >> with bind value C<"t0.c0"> ... not exactly
2095 what we wanted here.
2096
2097 Finally, here is an example where a subquery is used
2098 for expressing unary negation:
2099
2100   my ($sub_stmt, @sub_bind)
2101      = $sql->where({age => [{"<" => 10}, {">" => 20}]});
2102   $sub_stmt =~ s/^ where //i; # don't want "WHERE" in the subclause
2103   my %where = (
2104         lname  => {like => '%son%'},
2105         \["NOT ($sub_stmt)" => @sub_bind],
2106     );
2107
2108 This yields
2109
2110   $stmt = "lname LIKE ? AND NOT ( age < ? OR age > ? )"
2111   @bind = ('%son%', 10, 20)
2112
2113 =head3 Deprecated usage of Literal SQL
2114
2115 Below are some examples of archaic use of literal SQL. It is shown only as
2116 reference for those who deal with legacy code. Each example has a much
2117 better, cleaner and safer alternative that users should opt for in new code.
2118
2119 =over
2120
2121 =item *
2122
2123     my %where = ( requestor => \'IS NOT NULL' )
2124
2125     $stmt = "WHERE requestor IS NOT NULL"
2126
2127 This used to be the way of generating NULL comparisons, before the handling
2128 of C<undef> got formalized. For new code please use the superior syntax as
2129 described in L</Tests for NULL values>.
2130
2131 =item *
2132
2133     my %where = ( requestor => \'= submitter' )
2134
2135     $stmt = "WHERE requestor = submitter"
2136
2137 This used to be the only way to compare columns. Use the superior L</-ident>
2138 method for all new code. For example an identifier declared in such a way
2139 will be properly quoted if L</quote_char> is properly set, while the legacy
2140 form will remain as supplied.
2141
2142 =item *
2143
2144     my %where = ( is_ready  => \"", completed => { '>', '2012-12-21' } )
2145
2146     $stmt = "WHERE completed > ? AND is_ready"
2147     @bind = ('2012-12-21')
2148
2149 Using an empty string literal used to be the only way to express a boolean.
2150 For all new code please use the much more readable
2151 L<-bool|/Unary operators: bool> operator.
2152
2153 =back
2154
2155 =head2 Conclusion
2156
2157 These pages could go on for a while, since the nesting of the data
2158 structures this module can handle are pretty much unlimited (the
2159 module implements the C<WHERE> expansion as a recursive function
2160 internally). Your best bet is to "play around" with the module a
2161 little to see how the data structures behave, and choose the best
2162 format for your data based on that.
2163
2164 And of course, all the values above will probably be replaced with
2165 variables gotten from forms or the command line. After all, if you
2166 knew everything ahead of time, you wouldn't have to worry about
2167 dynamically-generating SQL and could just hardwire it into your
2168 script.
2169
2170 =head1 ORDER BY CLAUSES
2171
2172 Some functions take an order by clause. This can either be a scalar (just a
2173 column name,) a hash of C<< { -desc => 'col' } >> or C<< { -asc => 'col' } >>,
2174 or an array of either of the two previous forms. Examples:
2175
2176                Given            |         Will Generate
2177     ----------------------------------------------------------
2178                                 |
2179     \'colA DESC'                | ORDER BY colA DESC
2180                                 |
2181     'colA'                      | ORDER BY colA
2182                                 |
2183     [qw/colA colB/]             | ORDER BY colA, colB
2184                                 |
2185     {-asc  => 'colA'}           | ORDER BY colA ASC
2186                                 |
2187     {-desc => 'colB'}           | ORDER BY colB DESC
2188                                 |
2189     ['colA', {-asc => 'colB'}]  | ORDER BY colA, colB ASC
2190                                 |
2191     { -asc => [qw/colA colB/] } | ORDER BY colA ASC, colB ASC
2192                                 |
2193     [                           |
2194       { -asc => 'colA' },       | ORDER BY colA ASC, colB DESC,
2195       { -desc => [qw/colB/],    |          colC ASC, colD ASC
2196       { -asc => [qw/colC colD/],|
2197     ]                           |
2198     ===========================================================
2199
2200
2201
2202 =head1 SPECIAL OPERATORS
2203
2204   my $sqlmaker = SQL::Abstract->new(special_ops => [
2205      {
2206       regex => qr/.../,
2207       handler => sub {
2208         my ($self, $field, $op, $arg) = @_;
2209         ...
2210       },
2211      },
2212      {
2213       regex => qr/.../,
2214       handler => 'method_name',
2215      },
2216    ]);
2217
2218 A "special operator" is a SQL syntactic clause that can be
2219 applied to a field, instead of a usual binary operator.
2220 For example :
2221
2222    WHERE field IN (?, ?, ?)
2223    WHERE field BETWEEN ? AND ?
2224    WHERE MATCH(field) AGAINST (?, ?)
2225
2226 Special operators IN and BETWEEN are fairly standard and therefore
2227 are builtin within C<SQL::Abstract> (as the overridable methods
2228 C<_where_field_IN> and C<_where_field_BETWEEN>). For other operators,
2229 like the MATCH .. AGAINST example above which is specific to MySQL,
2230 you can write your own operator handlers - supply a C<special_ops>
2231 argument to the C<new> method. That argument takes an arrayref of
2232 operator definitions; each operator definition is a hashref with two
2233 entries:
2234
2235 =over
2236
2237 =item regex
2238
2239 the regular expression to match the operator
2240
2241 =item handler
2242
2243 Either a coderef or a plain scalar method name. In both cases
2244 the expected return is C<< ($sql, @bind) >>.
2245
2246 When supplied with a method name, it is simply called on the
2247 L<SQL::Abstract/> object as:
2248
2249  $self->$method_name ($field, $op, $arg)
2250
2251  Where:
2252
2253   $op is the part that matched the handler regex
2254   $field is the LHS of the operator
2255   $arg is the RHS
2256
2257 When supplied with a coderef, it is called as:
2258
2259  $coderef->($self, $field, $op, $arg)
2260
2261
2262 =back
2263
2264 For example, here is an implementation
2265 of the MATCH .. AGAINST syntax for MySQL
2266
2267   my $sqlmaker = SQL::Abstract->new(special_ops => [
2268
2269     # special op for MySql MATCH (field) AGAINST(word1, word2, ...)
2270     {regex => qr/^match$/i,
2271      handler => sub {
2272        my ($self, $field, $op, $arg) = @_;
2273        $arg = [$arg] if not ref $arg;
2274        my $label         = $self->_quote($field);
2275        my ($placeholder) = $self->_convert('?');
2276        my $placeholders  = join ", ", (($placeholder) x @$arg);
2277        my $sql           = $self->_sqlcase('match') . " ($label) "
2278                          . $self->_sqlcase('against') . " ($placeholders) ";
2279        my @bind = $self->_bindtype($field, @$arg);
2280        return ($sql, @bind);
2281        }
2282      },
2283
2284   ]);
2285
2286
2287 =head1 UNARY OPERATORS
2288
2289   my $sqlmaker = SQL::Abstract->new(unary_ops => [
2290      {
2291       regex => qr/.../,
2292       handler => sub {
2293         my ($self, $op, $arg) = @_;
2294         ...
2295       },
2296      },
2297      {
2298       regex => qr/.../,
2299       handler => 'method_name',
2300      },
2301    ]);
2302
2303 A "unary operator" is a SQL syntactic clause that can be
2304 applied to a field - the operator goes before the field
2305
2306 You can write your own operator handlers - supply a C<unary_ops>
2307 argument to the C<new> method. That argument takes an arrayref of
2308 operator definitions; each operator definition is a hashref with two
2309 entries:
2310
2311 =over
2312
2313 =item regex
2314
2315 the regular expression to match the operator
2316
2317 =item handler
2318
2319 Either a coderef or a plain scalar method name. In both cases
2320 the expected return is C<< $sql >>.
2321
2322 When supplied with a method name, it is simply called on the
2323 L<SQL::Abstract/> object as:
2324
2325  $self->$method_name ($op, $arg)
2326
2327  Where:
2328
2329   $op is the part that matched the handler regex
2330   $arg is the RHS or argument of the operator
2331
2332 When supplied with a coderef, it is called as:
2333
2334  $coderef->($self, $op, $arg)
2335
2336
2337 =back
2338
2339
2340 =head1 PERFORMANCE
2341
2342 Thanks to some benchmarking by Mark Stosberg, it turns out that
2343 this module is many orders of magnitude faster than using C<DBIx::Abstract>.
2344 I must admit this wasn't an intentional design issue, but it's a
2345 byproduct of the fact that you get to control your C<DBI> handles
2346 yourself.
2347
2348 To maximize performance, use a code snippet like the following:
2349
2350     # prepare a statement handle using the first row
2351     # and then reuse it for the rest of the rows
2352     my($sth, $stmt);
2353     for my $href (@array_of_hashrefs) {
2354         $stmt ||= $sql->insert('table', $href);
2355         $sth  ||= $dbh->prepare($stmt);
2356         $sth->execute($sql->values($href));
2357     }
2358
2359 The reason this works is because the keys in your C<$href> are sorted
2360 internally by B<SQL::Abstract>. Thus, as long as your data retains
2361 the same structure, you only have to generate the SQL the first time
2362 around. On subsequent queries, simply use the C<values> function provided
2363 by this module to return your values in the correct order.
2364
2365 However this depends on the values having the same type - if, for
2366 example, the values of a where clause may either have values
2367 (resulting in sql of the form C<column = ?> with a single bind
2368 value), or alternatively the values might be C<undef> (resulting in
2369 sql of the form C<column IS NULL> with no bind value) then the
2370 caching technique suggested will not work.
2371
2372 =head1 FORMBUILDER
2373
2374 If you use my C<CGI::FormBuilder> module at all, you'll hopefully
2375 really like this part (I do, at least). Building up a complex query
2376 can be as simple as the following:
2377
2378     #!/usr/bin/perl
2379
2380     use CGI::FormBuilder;
2381     use SQL::Abstract;
2382
2383     my $form = CGI::FormBuilder->new(...);
2384     my $sql  = SQL::Abstract->new;
2385
2386     if ($form->submitted) {
2387         my $field = $form->field;
2388         my $id = delete $field->{id};
2389         my($stmt, @bind) = $sql->update('table', $field, {id => $id});
2390     }
2391
2392 Of course, you would still have to connect using C<DBI> to run the
2393 query, but the point is that if you make your form look like your
2394 table, the actual query script can be extremely simplistic.
2395
2396 If you're B<REALLY> lazy (I am), check out C<HTML::QuickTable> for
2397 a fast interface to returning and formatting data. I frequently
2398 use these three modules together to write complex database query
2399 apps in under 50 lines.
2400
2401 =head1 REPO
2402
2403 =over
2404
2405 =item * gitweb: L<http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits/SQL-Abstract.git>
2406
2407 =item * git: L<git://git.shadowcat.co.uk/dbsrgits/SQL-Abstract.git>
2408
2409 =back
2410
2411 =head1 CHANGES
2412
2413 Version 1.50 was a major internal refactoring of C<SQL::Abstract>.
2414 Great care has been taken to preserve the I<published> behavior
2415 documented in previous versions in the 1.* family; however,
2416 some features that were previously undocumented, or behaved
2417 differently from the documentation, had to be changed in order
2418 to clarify the semantics. Hence, client code that was relying
2419 on some dark areas of C<SQL::Abstract> v1.*
2420 B<might behave differently> in v1.50.
2421
2422 The main changes are :
2423
2424 =over
2425
2426 =item *
2427
2428 support for literal SQL through the C<< \ [$sql, bind] >> syntax.
2429
2430 =item *
2431
2432 support for the { operator => \"..." } construct (to embed literal SQL)
2433
2434 =item *
2435
2436 support for the { operator => \["...", @bind] } construct (to embed literal SQL with bind values)
2437
2438 =item *
2439
2440 optional support for L<array datatypes|/"Inserting and Updating Arrays">
2441
2442 =item *
2443
2444 defensive programming : check arguments
2445
2446 =item *
2447
2448 fixed bug with global logic, which was previously implemented
2449 through global variables yielding side-effects. Prior versions would
2450 interpret C<< [ {cond1, cond2}, [cond3, cond4] ] >>
2451 as C<< "(cond1 AND cond2) OR (cond3 AND cond4)" >>.
2452 Now this is interpreted
2453 as C<< "(cond1 AND cond2) OR (cond3 OR cond4)" >>.
2454
2455
2456 =item *
2457
2458 fixed semantics of  _bindtype on array args
2459
2460 =item *
2461
2462 dropped the C<_anoncopy> of the %where tree. No longer necessary,
2463 we just avoid shifting arrays within that tree.
2464
2465 =item *
2466
2467 dropped the C<_modlogic> function
2468
2469 =back
2470
2471 =head1 ACKNOWLEDGEMENTS
2472
2473 There are a number of individuals that have really helped out with
2474 this module. Unfortunately, most of them submitted bugs via CPAN
2475 so I have no idea who they are! But the people I do know are:
2476
2477     Ash Berlin (order_by hash term support)
2478     Matt Trout (DBIx::Class support)
2479     Mark Stosberg (benchmarking)
2480     Chas Owens (initial "IN" operator support)
2481     Philip Collins (per-field SQL functions)
2482     Eric Kolve (hashref "AND" support)
2483     Mike Fragassi (enhancements to "BETWEEN" and "LIKE")
2484     Dan Kubb (support for "quote_char" and "name_sep")
2485     Guillermo Roditi (patch to cleanup "IN" and "BETWEEN", fix and tests for _order_by)
2486     Laurent Dami (internal refactoring, extensible list of special operators, literal SQL)
2487     Norbert Buchmuller (support for literal SQL in hashpair, misc. fixes & tests)
2488     Peter Rabbitson (rewrite of SQLA::Test, misc. fixes & tests)
2489     Oliver Charles (support for "RETURNING" after "INSERT")
2490
2491 Thanks!
2492
2493 =head1 SEE ALSO
2494
2495 L<DBIx::Class>, L<DBIx::Abstract>, L<CGI::FormBuilder>, L<HTML::QuickTable>.
2496
2497 =head1 AUTHOR
2498
2499 Copyright (c) 2001-2007 Nathan Wiger <nwiger@cpan.org>. All Rights Reserved.
2500
2501 This module is actively maintained by Matt Trout <mst@shadowcatsystems.co.uk>
2502
2503 For support, your best bet is to try the C<DBIx::Class> users mailing list.
2504 While not an official support venue, C<DBIx::Class> makes heavy use of
2505 C<SQL::Abstract>, and as such list members there are very familiar with
2506 how to create queries.
2507
2508 =head1 LICENSE
2509
2510 This module is free software; you may copy this under the same
2511 terms as perl itself (either the GNU General Public License or
2512 the Artistic License)
2513
2514 =cut
2515