Reputation: 9465
Is it possible to generate a database schema from hsql?
Regards, Kurt
Upvotes: 0
Views: 204
Reputation: 24372
HSQLDB supports the SCRIPT statement (just one word) which returns a result set containing the schema definition and the database settings.
SCRIPT
The result set does not contain the data in the tables.
Upvotes: 1