我现在用HibernateTemplate().saveOrUpdate(entity)方法对我要修改的数据进行更新保存,它主要是通过主键来判断,如果主键存在则更新,否则新插入一条记录,可是我这个表的主键是自增的,然后在执行update语句时就报错了:Batch update returned unexpected row count from update [0]; actual row count: 0; expected:
可是现在我需要主键是自增的,请问该怎么写才能实现我的编辑功能?
表结构包括三个属性:id(主键,自增的,不需编辑);departnumber和departname都是需要编辑的属性。 |
|