In 开发者_StackOverflow社区other words, how to export sql-script for building database and putting data into it from HSQLDB?
Use
SCRIPT 'yourFilePathAndName'
It will save the database SQL script, including data, to the file you specify.
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.
精彩评论