Enum is not a standard JDBC type, so Ibator won't know what to do with it. However, I just did a quick test and it works fine if you configure it correctly. Steps:
1. You will need to define the corresponding Java enum yourself (foo.bar.MyEnum) 2. Then do a column override in the Ibator configuration: <table name="someTable"> <columnOverride column="someColumn" javaType="foo.bar.MyEnum"/> </table> This works as expected. I've checked in a new test to prove it for the future. Jeff Butler 2009/11/12 Tomáš Procházka <[email protected]>: > > Another issue that I found in ibator is that he doesn't support Enum type > when database has enum column. It generate pojo object as String for this > field :-( > Will be this supported? > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
