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