1. Create table with native SQL works for Hibernate/HSQLDB, insert fails. Why? stackoverflow.comI use HSQLDB and Hibernate. I have to implement some functionality on database level (trigger ...) and because of this I have to execute some native SQL. I create a new ... |
2. Nulls in Insert (Hibernate 2.1.1, JBoss 3.2.1, HSQLDB) forum.hibernate.orgNewbie Joined: Fri Jan 16, 2004 2:37 am Posts: 5 Location: Columbus, Ohio Hi, I'm getting a "java.sql.SQLException: Try to insert null into a non-nullable column in statement" in my very simple application. I have a POJO with an Integer PK that looks like: Code: /** * @hibernate.class * table="conferences" */ public class Conference implements Serializable { ... |
3. Hibernate + HSQLDB: no data being inserted forum.hibernate.orgBeginner Joined: Mon Nov 08, 2004 11:58 am Posts: 20 hi, i try to use hibernate 2.1.6 and c3p0 with HSQLDB. I wrote a JUnit testcase to insert some data into the database. Although the testcase passes without error message, there is no data saved to the database. Here is the message generated by hibernate during the execution of the testcase: ... |