1. Using Different Hibernate User Types in Different Situations stackoverflow.comI am using Hibernate + JPA as my ORM solution. I am using HSQL for unit testing and PostgreSQL as the real database. I want to be able to use Postgres's native |
2. Specify initial value of HSQLDB identity via annotation stackoverflow.comCan I specify the initial value for an IDENTITY column using Hibernate/JPA annotations on top of an HSQLDB database? The relevant source code looks like this so far:
|
3. Hibernate Annotations + HSQLDB forum.hibernate.orgHi people! We need to use @SQLUpdate (Hibernate Annotations) for update a field with HSQLDB 1.8.0.10 (in components test). The integration is with Oracle database. The annotation is @SQLUpdate(sql="UPDATE SRS_SOLICITUDES SET fec_recarga = ?). This works ok. Firstly, when we change "?" by "sysdate": @SQLUpdate(sql="UPDATE SRS_SOLICITUDES SET fec_recarga = SYSDATE). This statament fails in HSQLDB. Secondly, we try with "today": @SQLUpdate(sql="UPDATE ... |