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