Best SQL browser for HSQLDB?

JavaSqlBrowserHsqldbSqlbrowser

Java Problem Overview


Whats the best browser tool for HSQLDB databases?

Java Solutions


Solution 1 - Java

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.

Solution 2 - Java

DBeaver works very nicely:

http://dbeaver.jkiss.org

Also, SQuirreL is always a safe bet for any database:

http://squirrel-sql.sourceforge.net

Meanwhile, IntelliJ has decent database tooling, too

https://www.jetbrains.com/datagrip/

Solution 3 - Java

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:

http://www.sql-workbench.net/

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionhawkeyeView Question on Stackoverflow
Solution 1 - JavahawkeyeView Answer on Stackoverflow
Solution 2 - JavaLukas EderView Answer on Stackoverflow
Solution 3 - JavaMartin KlinkeView Answer on Stackoverflow