Could you tell me the differences between HSQLDB and JavaDB? And which one should I use in unit testing, assuming that I only use standard features? Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
HSQLDB has features that are useful for testing and not available in JavaDB. These include
BTW, the above features are not available in H2 (mentioned in another answer) |
|||
|
|
|
HSQLDB is faster, therefore it is better suited for unit testing. The H2 Database is even better (in my view): it's as fast as HSQLDB, and supports compatibility modes for various databases (MySQL, Oracle,...). So if you need to use database specific features in the future, chances are that you can still test it with H2. But my view is a bit biased (see my profile). |
|||
|
|