Homepage:

http://hsqldb.org/

Download:

http://sourceforge.net/projects/hsqldb/files/

Installation

For using HSQLDB in a wicket webapplication, which is managed with Maven, you simple have to add this dependency entry:

...
<dependency>
  <groupId>hsqldb</groupId>
  <artifactId>hsqldb</artifactId>
  <version>1.8.1.1</version>
</dependency>
...

Configuration

hibernate.dialect=org.hibernate.dialect.HSQLDialect
hibernate.connection.driver_class=org.hsqldb.jdbcDriver
hibernate.connection.url=jdbc:hsqldb:yourdbname;shutdown=true
hibernate.connection.username=sa
hibernate.connection.password=
hibernate.hbm2ddl.auto=update

Usage

Windows: