Hi,

I think it's worth to revive it once Java 8 is available, using closures
for conditions. So instead of:

Product p = new Product();
List<Product> restock = db.from(p).
    where(p.unitsInStock).is(0).
    select();

it would be:

List<Product> restock = db.
    select(Person p -> p.unitsInStock == 0);

Regards,
Thomas



On Fri, Nov 30, 2012 at 12:45 PM, Noel Grandin <[email protected]>wrote:

> s it's time we dropped our org.h2.jaqu package ?
>
> Nobody seems to be being using it, a
>

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to