Skip Menu |

This queue is for tickets about the SQL-Abstract CPAN distribution.

Report information
The Basics
Id: 127117
Status: open
Priority: 0/
Queue: SQL-Abstract

People
Owner: Nobody in particular
Requestors: KES [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Fix confusing examples which uses @where
[This part]() of doc says: Show quoted text
> arrays are OR'ed, and things in hashes are AND'ed
and there is only example: my($stmt, @bind) = $sql->where(\%where); It must be extended by: my($stmt, @bind) = $sql->where(\@where); And the documentation for [where](https://metacpan.org/pod/SQL::Abstract#where(%5C%25where,-$order)) must be fixed. Otherwise the examples which use array are confusing: @where = ( event_date => {'>=', '2/13/99'}, event_date => {'<=', '4/24/03'}, );
How do you feel about submitting a patch or pull request?
Show quoted text
> How do you feel about submitting a patch or pull request?
If no one see any problems in my proposition and agree with it. I can write a patch/pull request.