JSP(6) - 進貨模組
處理商品進貨資訊,並允許根據商品編號核實該商品詳細資訊及存貨資訊。
要點:
1) 點選button觸發javascript 事件
function checkID() {
document.frmComm.action = './jsp/purch_in_bef.jsp';
document.frmComm.submit();
}
......
2) 在同一頁面中,將頁面輸入結果傳入資料庫,並顯示資料庫返回的處理結果
商品名稱:
以及原始碼中以上部分
3)處理select 型別的物件
進貨型別:
'purch_in_bef.jsp:
response.setHeader("Cache-Control","no-store"); //HTTP 1.1
response.setHeader("Pragma","no-cache"); //HTTP 1.0
response.setDateHeader("Expires", 0); //prevents caching at the proxy server
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
java.util.Date d=new java.util.Date();
DateFormat dFormat=new SimpleDateFormat("yyyy-MM-dd",Locale.CHINESE);
String sExchId = request.getParameter("exch_id");
String sExchName = "";
String sExchUnit = "";
String sExchQutt = "";
String sCommQutt = request.getParameter("exch_qutt");
String sExchType = request.getParameter("exch_type");
boolean rsnull=true;
if(sExchId != null && !sExchId.equals("")){
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@TCSCH074.tcsgdccn.com:1521:orcl";
//orcl為你的資料庫的SID
String user="store";
String password="store";
Connection conn= DriverManager.getConnection(url,user,password);
String sQuery = null;
Statement stmt = null;
ResultSet rs = null;
try{
sQuery = "select comm_name, comm_unit, comm_qutt from commodity ";
sQuery = sQuery + " where comm_id='"+sExchId+"'";
stmt = conn.createStatement();
rs = stmt.executeQuery(sQuery);
while(rs.next())
{
rsnull=false;
sExchName = rs.getString("comm_name");
sExchUnit = rs.getString("comm_unit");
sExchQutt = rs.getString("comm_qutt
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/207/viewspace-800176/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- JSP(11) - 退貨模組JS
- JSP(9) - 增加商品模組JS
- JSP(7) - 銷售模組JS
- Springboot 多模組 jspSpring BootJS
- JSP(12) - 商品處理模組JS
- JSP(10) - 修改商品資訊模組JS
- JSP(4) - 增加客戶模組JS
- JSP(5) - 修改客戶資訊模組JS
- Webpack4乾貨分享(一):入口、輸入和ES6模組Web
- 初探Angular6.x---進入使用者編輯模組Angular
- ES6-模組
- ES6模組
- Java Servlet和JSP教程(6)(轉)JavaServletJS
- jsp進階教程和ServletJSServlet
- Python教程-6模組Python
- ES6 - 模組化
- ES6模組化
- Tomcat 6 --- 使用Jasper引擎解析JSPTomcatJS
- JavaEE學習之走進JSPJavaJS
- ES6 模組簡介
- Jsp+JavaBean循序漸進教程(六)JSJavaBean
- 6月期貨總結
- ES6模組與commonJS模組的差異JS
- ES6 module模組 import exportImportExport
- 前端ES6模組化,Webpack,前端Web
- 6-1 Node.js 模組Node.js
- ES6 的模組系統
- jsp 匯入css ie6 怎麼不行?JSCSS
- Python進階03 模組Python
- pip進行模組安裝
- 【模組二】Python進階Python
- 【JSP進階】JSP九大內建物件,這你也不知道?JS物件
- ES6 模組化與 CommonJS 模組化區別JS
- 【菜鳥學Java】6:JSP的基本原理JavaJS
- 潛入理解ES6-模組化
- ES6的模組化語法
- ES6 模組語法——export 命令Export
- ES6 模組語法——import 命令Import