話不多說,直接上例子
insert
復(fù)制代碼 代碼如下:
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
復(fù)制代碼 代碼如下:
String condition="delete from allorder where id='"+ orderid+ "'";
int result=stmt.executeUpdate(condition);
if(result==1)
response.sendRedirect("index.jsp");
else
out.println("shopCar.jsp");
update
復(fù)制代碼 代碼如下:
與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="刪除" onclick="window.location.href='delete.jsp?orderid=%=orderid %>'">/td>/tr>/table>/td>/tr>
%
}
// 關(guān)閉連接
stmt.close();// 關(guān)閉命令對象連接
con.close();// 關(guān)閉數(shù)據(jù)庫連接
} catch (SQLException e) {
e.printStackTrace();
out.println("數(shù)據(jù)庫連接錯誤");
System.exit(0);
}
//數(shù)據(jù)庫連接完成
%>
/table>
您可能感興趣的文章:- JSP開發(fā)入門(二)----JSP語法的基本原理
- JSP的9種基本內(nèi)置組件
- JSP語法Page指令
- JSP 多條SQL語句同時執(zhí)行的方法
- jsp web.xml文件的作用及基本配置
- 基于JSP編譯器基本語法的使用詳解
- JSP經(jīng)典學(xué)習(xí)筆記(包含各種入門常用語法)
- JSP基本語句用法總結(jié)