hsqldb « Map « JPA Q&A





1. Mapping a table called "group" in Hibernate for DB2 and HSQLDB    stackoverflow.com

I have a table called group, that I am trying to map using hibernate for DB2 and HSQLDB. Table name group is a reserved word and it must be ...

2. JPA Proprty not mapped to column in DB    stackoverflow.com

I have property in my JPA model which is not mapped to any column in the database. Because of this, the compiler says "column abc cannot be resolved". Is there any annotation to ...

3. Hibernate/JPA/HSQL : How to create a Dialect mapping for User Type ARRAY    stackoverflow.com

I have successfully created User Types with Postgres, and can read and write successfully. @org.hibernate.annotations.Type(type = "com.xxx.datamodel.ext.FooType" ) @Column(name = "foo", nullable = false) private int[] foo @org.hibernate.annotations.Type(type = "com.xxx.datamodel.ext.BarType" ) @Column(name = "bar", nullable = ...

4. Generating a compatible join table for hsql from a legacy mapping    stackoverflow.com

Given this schema:
+-----------------+------------------+------+-----+-------------------+-------+
| Field           | Type             | Null | ...