Hi,
We've recently upgraded to Hibernate 3 from 2 but doing this has introduced us a new problem. The schema being generated by the hbm2dll is now altering the column positions. For example we have Table Animal with cols name, type, colour. The schema being generated after the upgrade is creating an ordering of type, colour, name for table Animal :~ Unfortunately trying to migrate data is causing errors because of this ordering issue. I have had a look the documentation online and though the Java Persistence book, but to no avail. Any help or suggestions are greatly appreciated.
Thanks
|