Skip to main content

Java Program to update record using JFrame and Prepaired Statement

Java Program to update record using JFrame and Prepaired Statement


Java Program to edit record using JFrame and Prepaired Statement

Here is table Design 

Create table demo using two column as id  and Dname , id is primary key 


Program source code 



import javax.swing.*;  
import java.awt.event.*;  
import java.sql.*;

public class FrameUpdate extends JFrame implements ActionListener{  
    JTextField tf1,tf2,tf3;  
    JButton b1,b2;  
JLabel l1,l2;

Connection con;    PreparedStatement psmt;   int result;
//declaration of control 
 FrameUpdate(){  
        JFrame f= new JFrame("UpdateDemo");  
//
l1=new JLabel("Enter RollNo");
l1.setBounds(150,10,150,50);
        tf1=new JTextField();  
        tf1.setBounds(150,50,150,20);  
l2=new JLabel("Enter Name");
l2.setBounds(150,60,150,50);
        tf2=new JTextField();  
        tf2.setBounds(150,100,150,20);
        tf3=new JTextField();  
        tf3.setBounds(150,150,150,20);
       tf3.setEditable(false);   
        b1=new JButton("Add");  
        b1.setBounds(150,200,100,50);  
        b2=new JButton("Clear");  
        b2.setBounds(250,200,100,50); 
        b1.addActionListener(this);  // event handing power 
        b2.addActionListener(this);  
f.add(l1); f.add(l2);
        f.add(tf1);f.add(tf2);f.add(tf3);f.add(b1);f.add(b2);  
        f.setSize(500,300);  
        f.setLayout(null);  
        f.setVisible(true);  
f.setDefaultCloseOperation(EXIT_ON_CLOSE);

    }         
    public void actionPerformed(ActionEvent e) {  
       String s1=tf1.getText(); 
            int id =Integer.parseInt(s1);  
  
       String nm=tf2.getText();  
   
        
      
        if(e.getSource()==b1){  
  try{
   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
  // loding Driver
  
con=DriverManager.getConnection("jdbc:odbc:demodb");
 
  psmt=con.prepareStatement("update demo set dname=? where id=?");
             psmt.setString(1,nm);
            psmt.setInt(2,id);
 
int result=psmt.executeUpdate();
  tf3.setText("record updated ");  
  
  con.close();
  }
  catch(Exception e1)
  {
  tf3.setText("Error" +e1);
  
  }
            
        }else if(e.getSource()==b2){  
           tf1.setText(" ");
  tf2.setText(" ");
    tf3.setText("record cleared");
        }  
        
    }  
public static void main(String[] args) {  
    new FrameUpdate();  
} }  




You Can Find Related post 



Java Program to insert record using JFrame and Prepaired Statement


Java Program to delete record using JFrame and Prepaired Statement


Java Program to update record using JFrame and Prepaired Statement


Java Program to Display  record using JFrame and Prepaired Statement












Labels

Show more

Popular posts from this blog

Basic java

java java java, learn java online free, classroom java tutorial, beginners java, java beginners, java programming,  basic java , basic java Tutorial,  basic java  Assignment           Hello friends ,       I am learning Basic java . my motive behind this blog is to help those want to learn Basic java online free of cost and grab each and every basic aspect of java programming .     you can find java tutorial from basic on this blog i will post each and every assignment of basic java with source code .          we will divide our course  in to Day work .          Let's start Day One  Basic Java Assignment for  Beginners      Basic Requirement to learn Java Programming Download following software             1. Text Editor (Notepad, Notepad++, Edit pad, Eclipse...

java read file Character by Character

welcome java file handling tutorial . in this tutorial we are going to learn how to read text file using  java here i have used FileReader to  read file Character by Character. use following steps to read text file using java  program 1. create one folder on d drive as f that is name of folder is f 2. create t1.txt file write some text on it 3. create java program use following code or follow steps from video save java program in same folder import java.io.* package properly in java program 4. compile program and run 5. to understand program read what is FileReader read program explanation given below. save RfileCh.java // program by Prakash import java.io.*; class RfileCh {  public static void main(String s[])  {   try{        FileReader r=new FileReader("t1.txt");   // used to open a file   int ch;     while((ch=r.read())!=-1)   // here -1 is end of ...