Top "Hsqldb" questions

HSQLDB (HyperSQL Database) is a relational database management system.

How to load mysql dump to hsqldb database?

I have a sql file that creates a database in mysql: SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @…

mysql groovy migration hsqldb
Startup script to create a schema in HSQLDB

I am attempting to use an in-memory database to mock out a teradata database. I need to create a schema …

hibernate spring hsqldb
File based h2 persisted but not loaded in Spring Boot

I made a small application based on Spring Boot: spring-boot-starter-web spring-boot-starter-data-jpa The application has simply one domain class Post.java. …

java maven hsqldb h2 spring-boot
Unit test MyBatis with HSQL instead of Oracle

I would like to unit test my MyBatis persistence layer using an HSQL in-memory database. The real application uses an …

oracle hsqldb mybatis
ConstraintViolationException: NOT NULL when using Spring, HSQL and Hibernate

I get a NOT NULL constraint violation exception when trying to insert an object of type Individual in the DB. …

java sql spring hibernate hsqldb
Has HSQLDB some mechanism to save in-memory data to file?

Has HSQLDB some mechanism for saving in-memory data to file? As I know after the server is shutted down, all …

hsqldb
Boolean column in HSQLDB with default value

I have having trouble getting HSQLDB to create a table with a boolean column. It seems every time I try …

java hsqldb
Link a sequence with to an identity in hsqldb

In PostgreSql, one can define a sequence and use it as the primary key of a table. In HsqlDB, one …

sql sequence hsqldb
HSQLDB object name already exists

I'm trying to set up an HSQL database for testing, using version 2.2.9, Hibernate 3.6.9, and Spring 3.1.2. We had been using a …

hsqldb
Junit with HSQL/H2 without Spring/Hibernate

I am trying to use H2 or HSQL for my unit testing. But my application is not of spring and …

java unit-testing junit hsqldb h2