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

ChatGPT Free Online Download the ChatGPT App Easily

Have you ever wanted to talk to a friendly, smart robot that helps you with…

3 days ago

Free GPT Chat? DeepSeek AI Does It Better

DeepSeek AI is becoming a friendly and powerful new tool in the world of artificial…

2 weeks ago

Spring Boot MySQL Complete CRUD REST API [ Free Sourecode ]

Do you want to become an expert in Spring Boot CRUD operations? This comprehensive tutorial…

2 weeks ago

CREATE Responsive Navigation Bar with FlexBox CSS!

Modern websites must have a navigation bar that is clear and responsive. FlexBox CSS is…

4 weeks ago

Registration with image upload Java Jdbc(Download Source code)

Introduction In this section, we will guide you step by step in the development of an image upload registration system in Java using MySQL and JDBC. In the application, users register…

2 months ago

Touchable shop Pos system using Java

The Touchable Shop POS (Point of Sale) system is a sophisticated software solution developed using…

3 months ago