Is it possible to do Table Inheritance in Java DB? We have a complex code model that uses inheritance and would also benefit from DB inheritance.
Is it possible? It doesn't seem possible from a quick google or a poke around in netbeans.
Cheers
|
|
|
First, your question is fairly vague in the details. The more specific you are the better the community can support you. So I'm going to guess what support you are looking for and hope it helps. If you're using something like JPA/Hibernate, you can create classes with the annotation
If you'll notice, the While I did everything with annotations, I'm sure you can look into doing this with XML as well. |
|||
|
|
I'm assuming that by "Java DB Table" you mean a standard SQL table, accessed via JDBC, and not a product called "Java DB Table".
The answer to your question is that no, you cannot directly do inheritance in SQL. This is not a limitation of Java, JDBC or any object-relational mapping tool, but an issue with SQL itself.
However, using Hibernate/JPA/JDO it's fairly easy to fake doing it, using several different methods. |
|||
|
|
|
I'm not sure if I understood your question correctly .... :-( Using an ORM solution like Hibernate (or JPA), you can have an abstract (or not) entity that has several subclasses, each mapped to a different table. Advantages:
|
|||
|
|