Deletion the data from the table Using Hibernate and swing by
R4R Team
As we have discussed in the all above example the inserting data value process. Here we do as we done in our last examples. For checking the last example to inserting the value and displaying the value in the form we can also visit on the given page. For the visit on the last page of example we need to click on the given link that is as click here
Now here also we do the same thing for the deletion the operation. Here only we need to take a form to perform the action page and a java class to store the action method. And all other method will be same as we have discussed in out last solved example to inserting data and updating the data also given fetching the data on the form.
First of all we need to take the Swing JForm. Go into the File menu wizard -> new file -> put the name on the required field -> click on finsh. In this form we desing the form as we want to show on the our form also remember that value will be taken which we have taken into the Database table.
Now we need to perform the action code on the form. that is given below:
Admin.java//it shows the method to fethc the id of the inserted data form the database of the table.
package swing.delete;
import java.util.ArrayList;
import java.util.List;
import org.hibernate.Criteria;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
public class Admin
{
public static List<String> getId()
{
List<String> a = new ArrayList<String>();
try
{
SessionFactory sf = new Configuration().configure().buildSessionFactory();
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!