I'm trying to write a function that would take a map of fields and values 
and would return a WHERE clause or Condition from that.

For example the input to the method would be a:
Map<Field<?>, ?>

and I would like to get back a Condition in the format of:
f1.eq(v1)
.and(f2.eq(v2))
.and(f3.eq(v3))
.
.


where f1, f2, f3, etc are the fields in the Map and v1, v2, v3, etc are the 
corresponding values.

I've been using JOOQ for a while for basic things but don't know the API 
enough to come up with a solution for this. Thanks for your help in advance!

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to