What is a good way of executing the DDL for a in-process HSQL database on the startup of the application?
I thought of selecting from INFORMATION_SCHEMA.TABLES
and if the count is zero, then i'd only execute my DDL script.
Is there a better way of doing this?