tags:

views:

2552

answers:

3

I have tried SQLite in Java, but the speed is slow due to the JDBC driver. Then I tried HSQLDB and thought the speed is good, but I cannot find a good management tool for HSQLDB such as phpMyAdmin for MySQL or SQLite Manager for SQLite.

I'd like to use the manager tool to prepare the test data for unit tests, or use the manager tool to navigate the data after doing some small experiments.

Is there any good tool?

A: 

Actually HSQL brings its own management tool (which is not super). See http://hsqldb.org/doc/guide/apf.html

Heiko Rupp
A: 

I've used Squirrel SQL. It's a universal client for any JDBC database.

See: http://squirrel-sql.sourceforge.net/

Mark S
A: 

This would only have meaning if you are running in HSQLDB server mode. If you are running in memory or file mode, then you either can't access the DB from another process or doing so would lock it.

In Server mode you could use any universal client. JDBC driver is the hsqldb.jar itself.

kgiannakakis