主頁(yè) > 知識(shí)庫(kù) > jsp與sql語(yǔ)句的混合使用示例

jsp與sql語(yǔ)句的混合使用示例

熱門(mén)標(biāo)簽:地圖標(biāo)注線(xiàn)上教程 杭州語(yǔ)音電銷(xiāo)機(jī)器人軟件 高德地圖標(biāo)注樣式 北票市地圖標(biāo)注 四川保險(xiǎn)智能外呼系統(tǒng)商家 杭州ai語(yǔ)音電銷(xiāo)機(jī)器人功能 電銷(xiāo)機(jī)器人是有一些什么技術(shù) 電銷(xiāo)機(jī)器人好賣(mài)么 商洛電銷(xiāo)
話(huà)不多說(shuō),直接上例子
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)閉命令對(duì)象連接
con.close();// 關(guān)閉數(shù)據(jù)庫(kù)連接
} catch (SQLException e) {
e.printStackTrace();
out.println("數(shù)據(jù)庫(kù)連接錯(cuò)誤");
System.exit(0);
}
//數(shù)據(jù)庫(kù)連接完成
%>
/table>
您可能感興趣的文章:
  • JSP開(kāi)發(fā)入門(mén)(二)----JSP語(yǔ)法的基本原理
  • JSP的9種基本內(nèi)置組件
  • JSP語(yǔ)法Page指令
  • JSP 多條SQL語(yǔ)句同時(shí)執(zhí)行的方法
  • jsp web.xml文件的作用及基本配置
  • 基于JSP編譯器基本語(yǔ)法的使用詳解
  • JSP經(jīng)典學(xué)習(xí)筆記(包含各種入門(mén)常用語(yǔ)法)
  • JSP基本語(yǔ)句用法總結(jié)

標(biāo)簽:紅河 丹東 西藏 宿州 青島 云浮 貴州 江西

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《jsp與sql語(yǔ)句的混合使用示例》,本文關(guān)鍵詞  jsp,與,sql,語(yǔ)句,的,混合,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《jsp與sql語(yǔ)句的混合使用示例》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于jsp與sql語(yǔ)句的混合使用示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章