| Author |
Problem inserting to Database
|
Manju Singh
Greenhorn
Joined: Feb 23, 2005
Posts: 27
|
|
I am trying to insert the record to DB using org.springframework.orm.hibernate3.HibernateTempla te. Everything is going fine no error on the console but when I try to see the record in the DB no record exists.(I am not using datasource.) But, when I try to insert the record using pure Hibernate API it is working fine. Below is the code. ************************************************ * SessionFactory sessionFactory = new Configuration().configure ().buildSessionFactory (); * Session session = sessionFactory.openSession (); * Transaction t = session.beginTransaction(); * t.begin(); * session.persist(empdata); * t.commit(); *********************************************** Now below is the code from Spring Below is my applicationcontext.xml <beans> <bean id="MyTemplate" class="org.springframework.orm.hibernate3.Hibernat eTemplate"> <property name="sessionFactory"> <ref bean="MySessionFactory"/></property> </bean> <bean id="MySessionFactory" class="org.springframework.orm.hibernate3.LocalSes sionFactoryBean"> <property name="mappingResources"> <list> <value>emp.hbm.xml</value> </list> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.connection.driver_class">com.xxx.xx xx.JDBCDriver</prop> <prop key="hibernate.connection.password">tiger</prop> <prop key="hibernate.connection.url">jdbc://...</prop> <prop key="hibernate.connection.username">scott</prop> <prop key="hibernate.dialect">org.hibernate.dialect.DB2D ialect</prop> </props> </property> </bean> In the Java Prog -------------------- HibernateTemplate hTemplate = (HibernateTemplate)EmpBeanFactory.getBean("MYConte xt","MyTemplate"); hTemplate.saveOrUpdate(empdata); hTemplate.flush(); // tried with/without using flush Interstingly, when I try to retrieve the record from the Database, it is going fine. I can iterate through all the records. List res = rmTemplate.find("From emp e"); System.out.println("Number of records fetched " + res.size()); It is printing 22 records on the console. I did one more test, like before inserting to DB I fetched the records it is 22. After insert it is printing 23 but when look into db its only 22. Record is somehow not committing to DB but it in the Session. I know somewhere I am missing something. Could anybody please help me to figure out this.
|
 |
Sabarish Sasidharan
Ranch Hand
Joined: Aug 29, 2002
Posts: 73
|
|
|
If you are running this within a transaction and a runtime exception occurs, then the transaction will be rolled back. Are you sure you are not swallowing the exception somewhere?
|
Sab<br /> <br />Perfection does not come from belief or faith. Talk does not count for anything. Parrots can do that. Perfection comes through selfless work.<br />Swami Vivekananda
|
 |
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15229
|
|
Originally posted by Sabarish Sasidharan: If you are running this within a transaction and a runtime exception occurs, then the transaction will be rolled back. Are you sure you are not swallowing the exception somewhere?
I'd bet Sabarish is on the right track. Springs exceptions must be caught or they are swallowed. Surround all your db related work in a try/catch block and see what you get.
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Problem inserting to Database
|
|
|