Some extra feedback on the problem I started with; While creating a function to map records and POJOs the way you suggested I found the same exception occuring. Apparently, there are two methods in the relevant Record with the same name but a different signature, and it's trying to invoke the wrong setter with the right type, therefor causing a ClassCastException. It may be a good idea to rename the method that takes a record as an argument to something that clearly shows it takes a Record. Ofcourse, it would be better if JooQ checked the type signatures on these methods.
- Rick On Thursday, September 13, 2012 1:08:17 PM UTC+2, Rick van Biljouw wrote: > > Alright, thanks! >
