Whats the best browser tool for HSQLDB databases?
hawkeye
HSQL has built-in GUI query tool called Database manager. In the directory of the database files run:
java -cp ../lib/hsqldb.jar org.hsqldb.util.DatabaseManager
and then setting the config to:
jdbc:hsqldb:file:databaseName
Allowed me to edit what I needed in a really convenient way.
DBeaver works very nicely:
Also, SQuirreL is always a safe bet for any database:
http://squirrel-sql.sourceforge.net
Meanwhile, IntelliJ has decent database tooling, too
I've had good experience with SQL Workbench/J. Some of the best features compared to other tools: Auto completion for tables and columns in SQL statements, Code formatting etc.
Check out the features on the project site:
来源:https://stackoverflow.com/questions/4990864/best-sql-browser-for-hsqldb