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