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