hsql question on data being saved
问题 I am looking into HSQL (to embed in an app) and was expecting that the data would be saved in a myDB.data file in the filesystem Instead after a clean shutdown (execute sql "shutdown", stop and shutdown server object) the only remaining files are myDB.properties and myDB.script and myDB.script has all the commands to recreate the data in memory. No myDB.data file exists E.g. from myDB.script CREATE MEMORY TABLE PUBLIC.DUMMYTABLE(ID INTEGER PRIMARY KEY,FIRSTNAME VARCHAR(20)) From myDB