Table of contents

Installation

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

File "pom.xml"
...
<dependency>
  <groupId>hsqldb</groupId>
  <artifactId>hsqldb</artifactId>
  <version>1.8.1.1</version>
</dependency>
...

Configuration

File "hibernate.properties"
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:

Command line
 
  • No labels