views:

29

answers:

1

In other words, how to export sql-script for building database and putting data into it from HSQLDB?

A: 

Use

SCRIPT 'yourFilePathAndName'

It will save the database SQL script, including data, to the file you specify.

fredt