Hello,
I need to have dynamic ORM (or similar behavior) in Java. This means
that when the data model is changed (in the database or some external
files or elsewhere...), the Java application can access the new
objects/tables and properties/columns by just re-launching the program,
without recompilation...
Does such a tool exist ????
Thanks in advance,
Charly
Thomas Kellerer - 22 Nov 2006 19:26 GMT
Charly wrote on 22.11.2006 19:24:
> Hello,
>
[quoted text clipped - 5 lines]
>
> Does such a tool exist ????
There is jdbcpersistence which generates the mapping classes at runtime. This
sounds like it could be what you are looking for:
http://www.jdbcpersistence.org/
I have never used it, but the description is promising
Thomas