jsp---预处理语句对象PreparedStatement
来源:未知 责任编辑:责任编辑 发表时间:2014-05-10 12:25 点击:次
预处理语句对象PreparedStatement,使用PreparedStatement进行添加数据,更新数据,删除数据和查询数据
添加数据
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>
09
<%
10
String url = "jdbc:mysql://localhost:3306/javaweb";//连接数据库的url地址
11
String user = "root";//登录数据库的用户名
12
String password = "zhangda890126;;";//登录数据库的用户名的密码
13
Connection conn = null;//链接对象
14
PreparedStatement pstmt = null;//语句对象
15
//ResultSet rs = null;//结果集对象
16
try{
17
Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动程序
18
conn = DriverManager.getConnection(url,user,password);//链接数据库
19
}catch(ClassNotFoundException e){
20
out.println("找不到驱动类");//抛出异常时,提示信息
21
}catch(SQLException e){
22
out.println("链接MySQL数据库失败");//处理SQLException异常
23
}
24
try{
25
String adduser = "INSERT INTO user (userid,username,password) VALUES(null,?,?)";//添加一条用户信息
26
pstmt = conn.<span style="color:#e53333;"><b>prepareStatement</b></span>(adduser);//创建预处理语句对象PreparedStatement
添加数据
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>
09
<%
10
String url = "jdbc:mysql://localhost:3306/javaweb";//连接数据库的url地址
11
String user = "root";//登录数据库的用户名
12
String password = "zhangda890126;;";//登录数据库的用户名的密码
13
Connection conn = null;//链接对象
14
PreparedStatement pstmt = null;//语句对象
15
//ResultSet rs = null;//结果集对象
16
try{
17
Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动程序
18
conn = DriverManager.getConnection(url,user,password);//链接数据库
19
}catch(ClassNotFoundException e){
20
out.println("找不到驱动类");//抛出异常时,提示信息
21
}catch(SQLException e){
22
out.println("链接MySQL数据库失败");//处理SQLException异常
23
}
24
try{
25
String adduser = "INSERT INTO user (userid,username,password) VALUES(null,?,?)";//添加一条用户信息
26
pstmt = conn.<span style="color:#e53333;"><b>prepareStatement</b></span>(adduser);//创建预处理语句对象PreparedStatement
相关新闻>>
- 发表评论
-
- 最新评论 更多>>