-->
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.  [ 6 posts ] 
Author Message
 Post subject: Hibernate 3.0 with MySQL 5.0(would not insert)
PostPosted: Mon Aug 08, 2005 6:00 am 
Newbie

Joined: Mon Aug 08, 2005 5:48 am
Posts: 9
Hi,
I found out this particular issue withi hib3.0 when using it with mysql5.0
Whenever i try to write(insert) some data it never writes , but reading from the tables works fine.
The same hib 3.0 works fine with mysql4.0.
Now that might seem to be mysql problem.

However interesting part being that a normal jdbc call to mysql 5.0 works fines without any issues.
Also if u try to write using a connection from the Session class within the hib 3.0 and write a normal Statement and a query , it also won't write.
Any suggestion???


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 08, 2005 6:43 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 3:00 pm
Posts: 1816
Location: Austin, TX
Quote:
if u try to write using a connection from the Session class within the hib 3.0 and write a normal Statement and a query , it also won't write.

What does "won't write" mean?

I am assuming you are not committing transactions, but there is not *nearly* enough information here to really tell for sure.


Top
 Profile  
 
 Post subject: Hibernate 3.0 with MySQL 5.0(would not insert)
PostPosted: Mon Aug 08, 2005 6:57 am 
Newbie

Joined: Mon Aug 08, 2005 5:48 am
Posts: 9
Hi,
What did i mean by "write" is infact insert of data into the table.
Given below is the part of the code.
It is very simple code as i was just testing out hib 3.0 with mysql5.0
No exceptions are generated .


Session session = null;

try{

SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();
session =sessionFactory.openSession();

Contact contact = new Contact();
contact.setId(4);
contact.setFirstName("test");
session.save(contact);

}catch(Exception e){

System.out.println(e.toString());
}finally{

try {
session.flush();
session.close();
} catch (HibernateException e1) {

System.out.println(e1.toString());
}

This part of code works fine withi mysql 4.0, no issues at all.

Thanks


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 08, 2005 7:19 am 
Expert
Expert

Joined: Thu Dec 04, 2003 12:36 pm
Posts: 275
Location: Bielefeld, Germany
As Steve said, you're not committing your transactions.
In MySQL 4 it probably worked, because of using a table type like MyISAM which does not support transactions. I don't know which is the default table type for MySQL 5, maybe it's InnoDB which supports transactions. So, in that case, you need to commit your transaction.

Code:
Transaction tx = session.beginTransaction();
tx.commit();


Best regards
Sven


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 08, 2005 1:53 pm 
Beginner
Beginner

Joined: Thu Mar 31, 2005 9:58 pm
Posts: 25
Location: Valparaiso
It's a common error, always commit your transactions!
Ah! if you want to "forget" the task of commit transactions and only put save() or delete() to your classes, uses the HibernateTemplate() of the Spring Framework to control the lifecycle of your entities. More details of this in http://www.springframework.org

Good luck!

_________________
Daniel Casanueva R.

Jcode
Valparaiso, Chile


Top
 Profile  
 
 Post subject: Hibernate 3.0 with MySQL 5.0(would not insert)
PostPosted: Mon Aug 08, 2005 11:36 pm 
Newbie

Joined: Mon Aug 08, 2005 5:48 am
Posts: 9
Hi,
Yup that suggestion worked.
Thanks Steve and Sven for the solution.
And also thanks Daniel for that extra info
:)
Have a nice day


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

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.