Posts

Showing posts from October, 2025

DELETING RECORDS FROM DATABASE

DELETING RECORDS FROM DATABASE <html> <body> <form action="Delete.jsp">     Enter Employee Number to Delete: <input type="text" name="txtEno"><br><br>     <input type="reset"> <input type="submit" value="Delete"> </form> </body> </html> <%@ page contentType="text/html" import="java.sql.*" %> <html> <body> <h1>Employee Record Deletion Page</h1> <% String eno = request.getParameter("txtEno"); try {     Class.forName("com.mysql.jdbc.Driver");     Connection con = DriverManager.getConnection(         "jdbc:mysql://localhost:3306/nehal", "root", "system123");     PreparedStatement stmt = con.prepareStatement(         "SELECT * FROM employee WHERE Employee_No=?");     stmt.setString(1, eno);     ResultSet rs = stmt.executeQuery();     if (rs.next()) {      ...

links

  NetBeans projects :- https://drive.google.com/drive/folders/1KB9WkdXKu9xXiXSwKP0brMHqMfSpL5Tg?usp=sharing For exam purpose :- https://drive.google.com/drive/folders/15I23g3xuHDUXlvBKzsakaVcS6xoECWXV?usp=drive_link word document from  3:- https://jumpshare.com/share/u8iX1lT3Fuiunc0UoHCA