SQL::Abstract 1.18

[prev] [thread] [next] [Date index for 2005/03/04]

From: Nathan Wiger
Subject: SQL::Abstract 1.18
Date: 00:05 on 04 Mar 2005
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

Re: SQL::Abstract 1.18
merlyn (Randal L. Schwartz) 02:42 on 04 Mar 2005

Re: SQL::Abstract 1.18
Thomas L Shinnick 03:24 on 04 Mar 2005

Re: SQL::Abstract 1.18
Nathan Wiger 18:53 on 04 Mar 2005

Re: SQL::Abstract 1.18
Rhesa Rozendaal 19:04 on 04 Mar 2005

Generated at 20:12 on 07 Mar 2005 by mariachi v0.52