| Quote: |
|
I'll try a few other Oracle drivers in the meantime being that I already have to wait on other features available for Windows that aren't available for Mac and Linux. Again, waiting appears to be the norm now. |
| Quote: |
|
TRACK has a TRACK_TYPE via the TRACK_TYP_CD and the created mapping is <many-to-one name="trackType" column="TRACK_TYP_CD" class="TrackType" /> which is correct. I also get the following mapping for TRACK_TYPE <set name="trackSet" inverse="true"> <key column="TRACK_TYP_CD"/> <one-to-many class="Track"/> </set> I do not get this mapping when using MySQL or SQL Server. I am using the classes14.jar. Any advice would be helpful as the DB is still being refined and manually editing the hbm files each time is becoming too time consuming. |
| Quote: |
|
Does not generate FK relationships. |
| Quote: |
|
Subclass is wiped out when new Abstract class is created. |
| Quote: |
|
Hibernate.cfg is not getting updated. |
| Quote: |
|
Subclasses shouldn't be overwritten (thus the AbstractClass generation) |
| Quote: |
|
and selecting to regenerate a table mapping shouldn't force me to select each referenced table (Those tables have many FK and those references have FK etc) just to regenerate one table. |
| Quote: |
|
The subclass is no longer being overwritten. However, I'm still forced to select each table that has a FK (and the tables that have FK to it, etc) to the table I'm trying to generate. This is a problem in that I have to overwrite the subclass now to get the FK relationships due to the constructors that are created. |
| Quote: |
|
Also, hibernate.cfg.xml is not being updated. I can remove the reference manually, regenerate the mapping, and my config files remains the same. |