休止状態で削除するための次のコードを書いています
Query query = session.createQuery("contact.firstName = 'Deepak' の連絡先の連絡先を削除");
int row = query.executeUpate();
if (row == 0){
System.out.println("Doesn't deleted any row!");
}
else{
System.out.println("DeletedRow: " + row);
}
次のエラー Hibernate: delete from CONTACT contact0_ where (contact0_.FIRSTNAME='Deepak') could not execute update query が表示されました
誰でも私を助けることができます