-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Non Unique Object Exception
PostPosted: Wed Sep 13, 2006 6:24 pm 
Newbie

Joined: Mon May 08, 2006 10:00 am
Posts: 8
Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp

Hibernate version: 3.0

Iam getting org.hibernate.NonUniqueObjectException
when iam trying to save an object, which is already being updated in same session/transaction.

try {
// Create the instance of Transaction object
session = HibernateUtils.getSession();
trans = session.beginTransaction();

Bean1 aBean1 = new Bean1();
aBean1.setId(1);
aBean1.setDesc("desc1");
session.saveorupdate(aBean1); // update table with desc1 to Id=1

Bean1 aBean2 = new Bean1();
aBean2.setId(2);
aBean2.setDesc("desc2");
session.save(aBean2); // insert new value in the table with id=2.

trans.commit();
session.flush();
session.close();
}


Thanks.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.