SQL::Abstract 1.18
[prev]
[thread]
[next]
[Date index for 2005/03/04]
Hey all-
So thought you'd like to know I just finished SQL::Abstract 1.18, which
contains a fix for this problem in 1.17:
name => { '!=', 'Bob', '!=', 'Jim' } # can't do that
This is now solved by new -and / -or operators:
name => [ -and => {'!=','Bob'}, {'!=','Jim'} ]
There is also a -nest to allow you to add parens:
%w = (
name => ['Nate', 'Jim'],
-nest => [ workhrs => {'>', 20}, geo => 'ASIA' ]
);
If anyone has a second, I can send you a pkg of 1.18 that you install
like usual.
I'd appreciate the feedback before jamming it on CPAN. Just reply to me.
Thanks,
Nate Wiger
www.formbuilder.org
|
SQL::Abstract 1.18
Nathan Wiger 00:05 on 04 Mar 2005
|