Java

Java GUI CRUD for Beginners

Introduction to Java GUI CRUD

Java is a powerful programming language widely used for building desktop applications. One fundamental aspect of many applications is the ability to manage data through Create, Read, Update, and Delete (CRUD) operations. In this tutorial, we will walk through creating a simple Java GUI application that performs basic CRUD operations, making it suitable for beginners.

First Step import the Sql namespace at the top : import java.sql.*;

After that implement the sql class 

Connection con;
PreparedStatement pst;
ResultSet rs;    
DefaultTableModel df;

After that use the connect method connet the databases

public void connect()
   {
  
       try {
           //Register the driver
           Class.forName("com.mysql.cj.jdbc.Driver");
            con = DriverManager.getConnection("jdbc:mysql:/phonebook","root","");
            System.out.println("Connected");
       } catch (ClassNotFoundException ex) {
           Logger.getLogger(Phone.class.getName()).log(Level.SEVERE, null, ex);
       } catch (SQLException ex) {
           Logger.getLogger(Phone.class.getName()).log(Level.SEVERE, null, ex);
       }
   }

Paste the code into the Save Button

String name,address;
int phone;

name = txtName.getText();
address = txtAddress.getText();
phone = Integer.parseInt(txtPhone.getText());


try {
    //query
    pst = con.prepareStatement("insert into contact(name,address,phone) values(?,?,?)");
     pst.setString(1, name);
     pst.setString(2, address);
     pst.setInt(3, phone);
     pst.executeUpdate();
     JOptionPane.showMessageDialog(null, "Record Saveddd!!!!!!");
     Phonetable();
     
} catch (SQLException ex) {
    Logger.getLogger(Phone.class.getName()).log(Level.SEVERE, null, ex);
}

Load the Table

public void Phonetable() 
   {
       try {
           pst = con.prepareStatement("SELECT * FROM contact");
           rs = pst.executeQuery();
           
           //pass into the respective table 
           df = (DefaultTableModel) tblbook.getModel();
           df.setRowCount(0);

            //contribute the table columns
            while (rs.next()) {
           df.addRow(new Object[]{
            
               rs.getString("name"),
               rs.getString("address"),
               rs.getInt("phone")
           });
       }   
       } catch (SQLException ex) {
           Logger.getLogger(Phone.class.getName()).log(Level.SEVERE, null, ex);
       }
       
   }

I attached the video below How to make this System

 

admin

Recent Posts

Build Simple Water System Calculator in Java Using Swing

If you're just beginning to learn Java GUI programming creating an Water System Calculator is a fantastic project for…

4 days ago

GitHub Copilot vs Microsoft Copilot Best AI Tool to Use in 2025

GitHub is a powerful tool used by teams and developers around the globe. This guide is…

1 week ago

Chat with Claude AI Free – Your Super-Smart AI Buddy

It's like having a super-smart buddy that is always there to help you write stories,…

2 weeks ago

Best Festivals UK 2025 [Free Guide Included]

The UK is known for its rich history, diverse culture, and most of all  its…

2 weeks ago

Bank Holidays 2025 UK – Plan Your Perfect Long Weekends

Do you have a plan for your next holiday? Being aware of the Bank Holidays within the…

2 weeks ago

Master Cursor AI Full Guide for Students & Creators

The world is rapidly changing of software development AI-assisted tools for coding have become the main focus. As…

2 weeks ago