-->
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: batch processing session error
PostPosted: Thu Aug 11, 2011 8:16 am 
Beginner
Beginner

Joined: Fri Jul 20, 2007 10:38 am
Posts: 49
I'm processing a batch of objects of which some are duplicates, say I'm processing a flatfile defining Students and some are the same (same natural key). The batch fails whenever a Student is added for the second time:
Code:
def.AbstractFlushingEventListener  - Could not synchronize database state with session
org.hibernate.exception.GenericJDBCException: Could not execute JDBC batch update

basically my code:
Code:
Session session = getSessionFactory().openSession();
Transaction tx = session.beginTransaction();
...
session.saveOrUpdate(student);
...
if (++recordCount % batchSize == 0) {
  session.flush();
  session.clear();
}
...

So I guess the problem is that before the flush, hibernate is unaware a student is a duplicate and hence prepares an insert-statement. How do I make hibernate aware of the student-name being the natural key?


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.