SAI YEWALE

Generation

typingsThu, 01 Dec 2022

Develop a program to create employee table in database having two columns "emp_id" and "emp_name"in advance java

public class Employee { private int id; private String name; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } }

Questions about programming?Chat with your personal AI assistant