Hey,

This is just an FYI for those who were using a pre 2.6 version of JOOQ in a
Scala app.

One of the improvements in the 2.6 API is the inclusion of the following
call on a Result instance:

<E> List<E> map(RecordMapper<? super R, E> mapper);

However, previously in our code we were using the implicit Scala map
function on the Result<R> instance ( as returned by Result.fetch() ). Using
the Scala implicit conflicts with the new API, so we've just decided to
ditch the Scala map in favor of supplying a RecordMapper that does the same
thing.

Hope this helps anybody porting their code.

Cheers,

Ben

Reply via email to