jsp---预处理语句对象PreparedStatement(8)
来源:未知 责任编辑:责任编辑 发表时间:2014-05-10 12:25 点击:次
33
rs = pstmt.executeQuery();
34
35
while(rs.next()){
36
int userid = rs.getInt(1);
37
String username = rs.getString(2);
38
String userpassword = rs.getString(3);
39
out.println("用户的ID:"+userid+"用户名:"+username+"用户的密码:"+userpassword+"<br />");
40
}
41
42
}catch(SQLException e){
43
out.println("添加用户信息失败");
44
}
45
46
try{
47
if(pstmt != null){
48
pstmt.close();
49
conn = null;
50
}
51
if(conn != null){
52
conn.close();
53
conn = null;
54
}
55
}catch(Exception e){
56
相关新闻>>
- 发表评论
-
- 最新评论 更多>>