Re: SQL::Abstract 1.18
[prev]
[thread]
[next]
[Date index for 2005/03/04]
Nathan Wiger wrote:
> 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'} ]
Nice. good improvement.
> There is also a -nest to allow you to add parens:
>
> %w = (
> name => ['Nate', 'Jim'],
> -nest => [ workhrs => {'>', 20}, geo => 'ASIA' ]
> );
I like that a lot! nesting has been the only thing I found missing so
far. I have several apps where this will come in handy!
> If anyone has a second, I can send you a pkg of 1.18 that you install
> like usual.
I'd like one please :)
> I'd appreciate the feedback before jamming it on CPAN. Just reply to me.
Rhesa
|
|
Re: SQL::Abstract 1.18
Rhesa Rozendaal 19:04 on 04 Mar 2005
|