-->
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 Insert Help
PostPosted: Wed Jan 24, 2007 12:35 pm 
Beginner
Beginner

Joined: Tue Aug 08, 2006 11:53 am
Posts: 37
Hi all,

I am using the following code to do a batch insert (batch size set to 30 in the cfg file)

Everything works fine... just want to make sure i am doing it right...also do i need to call session.clear() after the flush() method.

Thank you in advance

Hibernate version: 3.x

Code between sessionFactory.openSession() and session.close():

Code:
public List createPartInfoInBatch(List partsInfoList) {
Session session = DAOFactory.getSessionFactory().getCurrentSession();
session.setCacheMode(CacheMode.IGNORE);
List errors=new ArrayList();
PartInfo part=null;

try {
   Iterator iterator = partsInfoList.iterator();
   while (iterator.hasNext()) {
   i++;
  part = (PartInfo) iterator.next();
  session.save(part);
 
if(i%30==0) {
   session.flush();
}
}
} catch (HibernateException e) {
//handle it
}


Name and version of the database you are using: Oracle 10g

Debug level Hibernate log excerpt:


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.