Hibernate and DB2- gives out an ERROR: util.JDBCExceptionReporter while inserting into or deleting from the table

Hibernate and DB2- gives out an ERROR: util.JDBCExceptionReporter while inserting into or deleting from the table

我在 DAO 中插入代码:

public void add(){
Books a=new Books();
a.setId("213");
a.setName("The DaVinci Code");
a.setAuthor("Dan Brown");
getSession().save(a);
}

我正在尝试从数据库 DB2 中插入或删除一条记录。但它给了我以下错误:

ERROR util.JDBCExceptionReporter  - [SQL7008] (TABLE name) not valid for operation.
ERROR def.AbstractFlushingEventListener  - Could not synchronize database state with session
org.hibernate.exception.GenericJDBCException: could not insert: 

我也在网上听说过一些关于日记的事情,但不确定。我不知道如何解决这个问题。请帮忙!

当使用 DB2 作为数据库时,您必须在事务中进行任何更新或插入之前记录 table。如果您尝试在事务中创建它并且它没有被记录,它会向您显示代码 SQL7008。

Hibernate 有一个默认的 属性 autocommit,如果你将它设置为 true 则它是 false 它会起作用,但不建议这样做,因为你将无法控制事务并仅在以下情况下提交一切正常。

<property name="hibernate.connection.autocommit" value="true"/>(不推荐)

所以,您的想法是在您的数据库中修复它并将 table 设置为已记录。