12.5

发布时间 2023-12-18 22:13:03作者: 张佳木

今日学习内容

<%@ page import="java.sql.DriverManager" %>
<%@ page import="java.sql.*" %><%--
Created by IntelliJ IDEA.
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<%
String name=request.getParameter("name");
try {
Class.forName("com.mysql.cj.jdbc.Driver");
} catch (ClassNotFoundException e) {
throw new RuntimeException(e);
}
request.setCharacterEncoding("utf-8");
Connection conn = null;
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/2023shenpi", "root", "123456");
Statement stat = null;
String sql = "delete from chuchai where name= ('"+name+"')";
stat = conn.createStatement();
int i=stat.executeUpdate(sql);
if(i!=0){
out.println("成功撤销");}
else{
out.println("撤销失败");

}
stat.close();
conn.close();
%>

</body>
</html>