Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
3.2
Name and version of the database you are using:
Mysql 5.0
I am having some problems with ddl validation in a legacy database. I am using hibernate entity manager and annotations.
My ids are usually declared in mysql as integer(10) so I need a Long field to manage it. Unfortunately, using long fields makes the validator expect a bigint(10) declaration. Is there anyway to avoid this?. I am also having a problem with an enum field mapped to a char(1). Hibernate expects a varchar(255).
Hibernate works well but I must disable ddl validation.
Thanks.