Reputation: 66226
In other words, how to export sql-script for building database and putting data into it from HSQLDB?
Upvotes: 1
Views: 1309
Reputation: 5967
You can use Eclipse's Data Source Explorer. You can generate DDL for whole base or specify certain table.
See picture
I bet other IDE's also have similar feature.
Upvotes: 0
Reputation: 24382
Use
SCRIPT 'yourFilePathAndName'
It will save the database SQL script, including data, to the file you specify.
Upvotes: 1