Home Jpa Jpacrud JPA update data Example



JPA update data Example
Posted on: May 24, 2009 at 12:00 AM
In this section, you know how to update the database data through the jpa.

JPA update data Example

     

In this section, you know how to update the database data through the jpa. You follow the following steps for updating the data. To update the data into database you can follow the following steps:

  • Load the business object
  • Update the data
  • Save (persist) the data using JPA merge() method

Follow the following steps to develop the example code to update the data into database.

Create a "JPAUpdate.java" file.

Put the following text.

Update code:
/**

*/
package roseindia;

import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;

/**
* @author Administrator
*
*/
public class JPAUpdate {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub

EntityManagerFactory emf = Persistence.createEntityManagerFactory("jpa");
EntityManager em = emf.createEntityManager();
try{
em.getTransaction().begin();
//find 
Student stud1 = em.find(Student.class,1);
stud1.setSname("Deepak");
//update
em.merge(stud1);
em.getTransaction().commit();
}
catch(Exception e){
System.out.println(e.getMessage());
}
finally{
em.close();
}
}

}
Run it and get the output in "Console window" of eclipse.

Check it in MySQL.

Related Tags for JPA update data Example:
dataforupdatingeepsinpdapsstepsatllfollowwingupdssthstepsstatiolo


More Tutorials from this section

Ask Questions?    Discuss: JPA update data Example   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.