0

我有带有复合键的休眠逆向工程生成类。我想使用复合键更新我的表列(即)非复合键。我试过了,但没有例外,我的查询没有工作。

 Query query= session.createQuery(update textvalues d  set d.mytext=:newtext"+"where d.id.firstId=:firstId and d.id.secondid=:secondId ");

这里,mytext 是 textvalues 表的一列。firstId , secondId 是复合键。如果我单独更新 id 值,它可以工作,但不适用于 mytext 列但执行良好。我不擅长调试,但是当我这样做时,我得到了org.hibernate.NonUniqueResultException

control not come after or execute after this line **session.createQuery()**
4

1 回答 1

0

只是在这里的黑暗中刺...

  update textvalues d  
     set d.mytext = :newtext
   where d.firstid = :firstId 
     and d.secondid = :secondId 
于 2013-11-05T12:13:04.607 回答