jsp---预处理语句对象PreparedStatement(6)
来源:未知 责任编辑:责任编辑 发表时间:2014-05-10 12:25 点击:次
30
31
//执行语句
32
pstmt.executeUpdate();
33
34
}catch(SQLException e){
35
out.println("添加用户信息失败");
36
}
37
38
try{
39
if(pstmt != null){
40
pstmt.close();
41
conn = null;
42
}
43
if(conn != null){
44
conn.close();
45
conn = null;
46
}
47
}catch(Exception e){
48
49
out.println("数据库关闭失败");
50
}
51
%>
52
</body>
53
</html>
查询数据
01
<%@page language="java" contentType="text/html;charset=gb2312"%>
02
<%@page import="java.sql.*" %>
03
<!DOCTYPE html>
04
<html>
05
<head>
06
<title>获得第二条记录开始的三条记录</title>
07
</head>
08
<body>
相关新闻>>
- 发表评论
-
- 最新评论 更多>>