Carol.Kar
Carol.Kar

Reputation: 5215

The most easiest way to get the schema from a HSQLDB

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

Answers (2)

user3679868
user3679868

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

Vadim Fedorenko
Vadim Fedorenko

Reputation: 2571

Try SCRIPT.

Same question here: look here too.

Upvotes: 1

Related Questions