Java

Java Record Insert using OOP

This tutorial will teach you how to Insert the records using OOP step by step.

Step 1

Create the 3 Private Variables 

private String name="";
private String address="";
private String phone="";

Step 2

Generate the Get and Set Methods of variables

public void setname(String name) 
{
  this.name=name;
}
public String getname()
{
   return name;
}
public void setaddress(String address)
{
    this.address=address;
}
public String getaddress() 
{
    return address;
}
public void setphone(String phone) 
{
     this.phone=phone;
}
public String getphone()
{
      return phone;
}

Inside the Save the Button Paste the Code

try
  {
    OppCrud op = new OppCrud();
    op.setname(txtname.getText()); 
    op.setaddress(txtaddress.getText());
    op.setphone(txtphone.getText()); 
     
    Class.forName("com.mysql.jdbc.Driver");
    con = DriverManager.getConnection("jdbc:mysql://localhost/oppcrud", "root","");
    String sql = "INSERT INTO registation(name,address,tel) VALUES (?,?,?)";   
    PreparedStatement statement = con.prepareStatement(sql);
     
    statement.setString(1,op.getname());
    statement.setString(2,op.getaddress());
    statement.setString(3,op.getphone());
    statement.executeUpdate();   
    JOptionPane.showMessageDialog(null, "Record Addedd Succssfully");
    txtname.setText("");
    txtaddress.setText("");
    txtphone.setText("");
    txtname.requestFocus();
}
catch(Exception e1)
{
   System.out.println(e1.toString());
}

i have attached the video link below. which will do this tutorials 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…

3 weeks ago

Laravel 11 CRUD Application

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

1 month 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…

3 months ago