Java

Customer Count using Java Mysql

This tutorial will teach you how to create customer count using java mysql.this program help you find no of customers.

  • The user shall be able to register the customer.
  • The user shall be able to count the no of customer.

Establish the Database Connection

public void Connect()
    {
        try {
            Class.forName("com.mysql.jdbc.Driver");
            con = DriverManager.getConnection("jdbc:mysql://localhost/gsm", "root", "");
            
            
        } catch (ClassNotFoundException ex) {
            ex.printStackTrace();
        } catch (SQLException ex) {
           ex.printStackTrace();
        }
        
    }

Add Records

  private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         

        String name = txtname.getText();
        String address = txtaddress.getText();
        String phone = txtphone.getText();  
        
        try {
            pst = con.prepareStatement("insert into customer(name,address,phone)values(?,?,?)");
            pst.setString(1, name);
            pst.setString(2, address);
            pst.setString(3, phone);
            int k = pst.executeUpdate();
            
            if(k==1)
            {
                JOptionPane.showMessageDialog(this, "Record Adddeddd");
                txtname.setText("");
                txtaddress.setText("");
                txtphone.setText("");
                txtname.requestFocus();  
                Customer();
            }
            
            else
            {
                JOptionPane.showMessageDialog(this, "Record Failed");
            }   
            
        } catch (SQLException ex) {
           ex.printstacktrace();
        }
        
        
    }

Count the No of Customers

         public void Customer()
    {
        try 
        {  
             pst = con.prepareStatement("SELECT COUNT(*) AS customerCount FROM customer");
             ResultSet rs = pst.executeQuery(); 
             while(rs.next())
             {
              int count = rs.getInt("customerCount");
              //  int count = rs.getInt(1);

                txtmsg.setText(String.valueOf(count));
             } 
        }
           catch (SQLException ex) 
          {
            ex.printstacktrace();
           }
    }

i attached the video link. watch this video this help you create System step by step.

 

admin

Recent Posts

Laravel 11 CRUD Mastering RESTful API MVC with Repository Pattern

In this tutorial will teach Laravel 11 Api MVC with Repository Pattern Crud Application step…

4 weeks ago

Laravel 11 CRUD Application

In this tutorial will teach Laravel 11 CRUD Application step by step. Laravel  11 CRUD…

2 months ago

How to make Times Table in React

in this tutorials we will be talk about how to make a times table in…

2 months ago

Laravel Tutorial: How to Add Numbers Easily Laravel 10

In this tutorials will teach How to add two numbers in Laravel 10. (more…)

2 months ago

Build Full-Stack Node.js MongoDB CRUD App with JWT Authentication

In this tutorial, we will teach the process of building a full-stack application using Node.js,…

3 months ago

Hospital Management System using OOP Java and MySQL

In this tutorial, we will explin you through the process of building a Hospital Management…

4 months ago