1. bit functions in HibernateEntityQuery stackoverflow.comIs it possible to use bit functions in queries using Seam's HibernateEntityQuery?
I've just inherited some code based on JSF, Seam & Hibernate. The existing DAO code makes use of Seam's |
2. how to access mysql view from hibernate query? seamframework.org |
3. format to specify LONGTEXT from mysql to hibernate seam forum.hibernate.orgI've googled arround to get a BLOB specified with LONGTEXT though for some reason I always get an error message during JBOSS upload (just verifying the DB:) wrong column type note expected : LONGTEXT what i'm I specifying : Mysql:(5.1) `note` LONGTEXT default NULL COMMENT 'no default site ', hibernate -entity (annotation ) @Column(name="note", columnDefinition="LONGTEXT") private String note;//blog @Column(name="note", columnDefinition="LONGTEXT") public ... |