Hi everyone,
We have the following situation : a table A with a field named ID and a
table B also with a field named ID.
We would have expected an Exception in the following pseudo code
{code}
ARecord record = selectFrom(A).fetch();
Long id = record.getValue(B.ID);
{code}
However, Jooq tries to match the field with names instead of "strictly"
considering the Field itself.
(We would have expected the matching behavior with Record#getValue(String),
but not with Record#getValue(Field))
How can we have a "strict" behavior?
Thanks,
Cheers,
stan.
--
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/groups/opt_out.