How can i delete selected data from database using jsp?

34 Views Asked by At

please help me..this is my fisrt code in jsp,i do not know how to do it right

<body>
    <%
         String sid = request.getParameter("u_id");
         try
        {
            Class.forName("com.mysql.jdbc.Driver");
            Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/mydb","root","M0hdZ@k1");
            PreparedStatement ps = con.prepareStatement("delete from information where id = '"+sid+ "'");
            ps.executeUpdate();
            con.close();
            ps.close();
        }
        catch(Exception ex)
         {
           out.println(ex.getMessage());
          }
    %>
    <h1>Record Deleted...</h1><br>
           <center><a href="Admin.jsp">Go Back</a></center>

0

There are 0 best solutions below