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