I have a DB that has a ton of different values mostly stored in one table several tables, all with a structure like:
encounterID | code | Value
1 | 1 | blue
1 | 2 | blonde
1 | 3 | six feet
1 | 99 | red
1 | 100 | 4-door
that might come from a DriverEncounter, which has a DriverEncounter.Person and DriverEncounter.Car.
Is hibernate meant to be used when dealing with dbs of this type? I am totally new to hibernate and have read the tutorials. However, I haven't seen any examples using this type of db. I know it can be used in this case, as I know of people using hibernate that have this type of structure. However, is this considered a good use / best practice of the circumstances in which hibernate is very helpful?
|