Reputation: 5215
I want to get the schema from one table from my hsqldb database. At the moment everything is generated with hibernate. Is there a fast and easy solution to get the schema out of the hsqldb?
I appreciate your answer!
Upvotes: 0
Views: 346
Reputation: 693
I often use SchemaSpy to generate an html description of a schema including relationship graphs. It uses a JDBC driver to fetch the schema information, so this works with any DB that has one. http://schemaspy.sourceforge.net
Upvotes: 1