Tagged Questions
2
votes
6answers
977 views
Map database column1, column2, columnN to a collection of elements
In legacy database tables we have numbered columns like C1, C2, C3, C100 or M1, M2, M3, M100.
This columns represent BLOB data.
It is not possible to change anything it this database.
By using JPA ...
1
vote
1answer
687 views
Hibernate/JPA/HSQL : How to create a Dialect mapping for User Type ARRAY
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 = ...