首页 > 编程 > JSP > 正文

jsp与sql语句的混合使用示例

2024-09-05 00:22:04
字体:
来源:转载
供稿:网友
这篇文章主要介绍了jsp与sql语句的混合使用,需要的朋友可以参考下

话不多说,直接上例子
insert

复制代码 代码如下:


String sql="insert into allorder values('" + orderid + "','" + bookid +"','" + amount + "','" + username + "')";
int result=stmt.executeUpdate(sql);
if(result==1)
response.sendRedirect("index.jsp");
else
response.sendRedirect("detail.jsp");



delete

复制代码 代码如下:


String condition="delete from allorder where";
int result=stmt.executeUpdate(condition);

if(result==1)
response.sendRedirect("index.jsp");
else
out.println("shopCar.jsp");


update

复制代码 代码如下:


与delete,insert差不多

select
[code]
<%
while (rs.next()){
String amount=rs.getString("amount");
String orderid=rs.getString("id");
String bookname=rs.getString("name");
String price=rs.getString("price");
String picture=rs.getString("pic");

//out.println("/tshuliang"+amount);
%>
<tr><td><%=orderid %></td><td><%=picture %></td><td><%=bookname %></td><td><%=price %></td><td><%=amount %></td><td><table><tr><td><input type="button" value="删除"></td></tr></table></td></tr>
<%
}
// 关闭连接
stmt.close();// 关闭命令对象连接
con.close();// 关闭数据库连接
} catch (SQLException e) {
e.printStackTrace();
out.println("数据库连接错误");
System.exit(0);
}
//数据库连接完成
%>
</table>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表