Java

Batch Processing Java JDBC Gui

This tutorial will teach you how to make a Batch Processing Java JDBC Gui application.

Establish the database Connection

   Connection con;
    PreparedStatement pst;
 
    ResultSet rs;
    public void Connect()
    {
        try 
        {
            Class.forName("com.mysql.jdbc.Driver");
            con = DriverManager.getConnection("jdbc:mysql://localhost/vmproducts","root","");
        }
        catch (ClassNotFoundException ex) 
        {
         
        } 
        catch (SQLException ex) {
           
        }
    }

Select the txtaccountno textfield right click >Key->Event->KeyReleased past the code inside the KeyReleased  event

private void txtpidKeyReleased(java.awt.event.KeyEvent evt) {                                   
        
           String pcode = txtpid.getText();
        try {
            pst = con.prepareStatement("select pname,price from product where id = ?");
             pst.setString(1, pcode);
            rs = pst.executeQuery();

            if(rs.next() == true)
            {
     
                String pname = rs.getString(1);
               String price = rs.getString(2);
                txtpname.setText(pname);
                txtprice.setText(price);
            }
            else
            {
                txtpname.setText("");
                txtprice.setText("");
            }
        
        } catch (SQLException ex) {
            Logger.getLogger(vmproduct.class.getName()).log(Level.SEVERE, null, ex);
        }
           
        
    }                                  

Save Records

past the code inside the Add button

try {
            con.setAutoCommit(false);
            String pcode = txtpid.getText();
            String pname = txtpname.getText();
            String price = txtprice.getText();
            String qty = txtqty.getText();
          
           Statement st1=con.createStatement( );
           
           String SQL1="insert into sales(pname,price,qty)values('" + pname  + "','" + price  + "','" + qty  + "')"; 
           String SQL2="update product set qty=qty- '" + qty  + "'  where id ='" + pcode  + "'";
         
 
           st1.addBatch(SQL1);
           st1.addBatch(SQL2);
                 
         
  int[ ] status= st1.executeBatch( );

  for(int i=0;i<status.length;i++)
  {
     System.out.println( status[ i ] );
   }
            con.commit();

            
        } catch (SQLException ex) {
          
        }

 

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