How to connect to HSQLDB using GUI
HSQLDB is a lightweight and opensource database server which supports memory and file storage. This database engine is 100% written in Java.
To connect to this database using GUI, engine has a DatabaseManager that you can run for data manipulation and database query.
Enter this command :
java org.hsqldb.util.DatabaseManager -driver org.hsqldb.jdbcDriver -url
Note : Please make sure that the hsqldb.jar was included in your classpath, if not you can use this command instead.
java -cp
