views:

36

answers:

1

I'm looking for a Java ORM that works from database reflection - I need to just point it at a DB, and start being able to walk through the entire set of tables, etc.

Ideas?

A: 

There are reverse-engineering tools

but I am not aware of any runtime extensions that would do the job as nicely as SqlSoup does. It is not impossible in Java, but I have never seen it and would be happy to learn if there is one.

van