I've found that hibernate correctly maps to boolean from tinyint(1) without any other
configuration
i.e. this works fine.
| @Column(name="is_include_trend")
| public boolean isIncludeTrend() {
| return this.includeTrend;
| }
|
| public void setIncludeTrend(boolean includeTrend) {
| this.includeTrend = includeTrend;
| }
|
-Dustin
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4089027#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...