Hello again, > I've see the class DefaultGenerator and - at row 810 - it uses
You've discovered a bug at precisely that location. I'll file this as #1244: https://sourceforge.net/apps/trac/jooq/ticket/1244 This will be fixed ASAP. Thanks for reporting this. > without Mode parameter. It calls GeneratorStrategyWrapper, not my > CustomGeneratorStartegy. > > Is it right? If yes, could you explain me how to set my custom name into > code-class definition? This is correct. The GeneratorStrategyWrapper is there to protect you from common code-generation flaws. It implements - method name disambiguation when tables have the same name as one of their columns, like TABLE.TABLE - method name disambiguation when getters are already present in the class hierarchy, like TABLE.CLASS, which would generate an illegal "getClass()" method. - field name disambiguation when fields have the same name as Java keywords, like TABLE.PUBLIC, which would generate an illegal "public" field. The GeneratorStrategyWrapper will ultimately call your own custom strategy, though. Cheers Lukas
