jdbc delete

Delete Record JDBC Example

Delete Record JDBC Example. The Employee ID is taken from keyboard input. Example on Delete Record JDBC Example import java.sql.*; import java.io.*; public class DeleteRecord { public static void main(String args[]) throws Exception { // to take input from the user BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.println(“Please Enter the ID no:”); String str=br.readLine(); int …

Delete Record JDBC Example Read More »