-->
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: Must I save sequentially in order to use JDBC batch
PostPosted: Mon Dec 24, 2007 4:36 am 
Newbie

Joined: Mon Oct 10, 2005 1:07 pm
Posts: 13
Hi,

I'm saving objects into Hibernate session, trying to use JDBC batch, but when I do it like that, I see in Hibernate debug logs that the actual batch size is 1 (although set to 50):

Code:
for (IEmployeeAudit audit : getEmployeeAudits()) {
   IEmployeeTransaction EmployeeTransaction = audit.getEmployeeTransaction();
   getHibernateTemplate().save(EmployeeTransaction);
   getHibernateTemplate().save(audit);
}



when doing it like that, I see batches of size 50 for both classes:

Code:
for (IEmployeeAudit audit : getEmployeeAudits()) {
   IEmployeeTransaction EmployeeTransaction = audit.getEmployeeTransaction();
   getHibernateTemplate().save(EmployeeTransaction);
}
for (IEmployeeAudit audit : getEmployeeAudits()) {
   getHibernateTemplate().save(audit);
}


Is that an expected behavior?

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.