Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Panel
borderStylesolid
titleTable of contents
Table of Contents
minLevel1
maxLevel3
includePagestrue
indent20px
styledisc

Installation

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

Code Block
titleFile "pom.xml"
borderStylesolid
...
<dependency>
  <groupId>hsqldb</groupId>
  <artifactId>hsqldb</artifactId>
  <version>1.8.1.1</version>
</dependency>
...

Configuration

Code Block
titleFile "hibernate.properties"
borderStylesolid
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:

Code Block
titleCommand line
borderStylesolid