利用Dbutils實現往兩個有關聯的表新增資料
Register.java(表單傳過來的後臺處理檔案)
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
String username=LM.toChinese(request.getParameter("username"));
String password=request.getParameter("password");
String sex=LM.toChinese(request.getParameter("sex"));
System.out.println(sex);
String email=request.getParameter("email");
response.setContentType("text/html;charset=utf-8");
NowTime time=new NowTime();
String ts=time.getDate();
String createby=username;
UserBean user=new UserBean();
UserImple ui=new UserImple();
User_Message um=new User_Message();
user=ui.AddUser(username,password,email,sex,createby,ts);
response.sendRedirect("Login.jsp");
}
```
UserImple.java(目前是往單一表儲存資料)
public UserBean AddUser(String username, String password, String email, String sex, String createby, String ts) {
// TODO Auto-generated method stub
try{
QueryRunner qr=new QueryRunner(JavaUtils.getPools());
String sql="insert into user (Username,UserPassword,Email,Sex,Create_Time,Create_By) values (?,?,?,?,?,?);";
Object[] params={username,password,email,sex,ts,createby};
qr.update(sql, params);
return null;
}catch(SQLException e){
throw new RuntimeException("註冊成功!");
}
}
```
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70007877/viewspace-2794992/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Mysql資料庫建立儲存過程實現往資料表中新增欄位的方法MySql資料庫儲存過程
- CMP關聯中新增資料有錯誤?
- 思考-兩個大表的關聯.txt
- oracle insert兩個關聯表Oracle
- 利用ODBC實現Domino和關聯式資料庫的互操作 (轉)資料庫
- React實現表單資料的新增與刪除React
- efcore 跨表查詢,實現一個介面內查詢兩個不同資料庫裡各自的表資料資料庫
- 採用oracle sequence及function為章節資訊表(四級自關聯表)批量新增關聯資料OracleFunction
- Java實現資料庫和資料表的二級聯動Java資料庫
- 利用DB Link實現資料庫間的表同步資料庫
- oracle利用索引關聯獲得資料的方法Oracle索引
- [20171212]EXPDP如何匯出兩表關聯後的資料
- 一個表單中的資料新增到不同的資料表中
- 往表中插入大量資料的方法(一)
- 關係型資料庫表結構的兩個設計技巧資料庫
- config表與其他資料表的關聯
- 往表中插入大量的資料的方法(二)
- 兩表關聯查詢:sql、mybatisSQLMyBatis
- 主流關聯式資料庫鎖實現的區別資料庫
- 搶先看:JavaScript的新增兩個原始資料型別JavaScript資料型別
- 比較兩個表的資料差別
- 兩個歷史表的資料合併
- 如實實現不同資料庫之間的 (模型) Eloquent: 關聯資料庫模型
- 兩個類的關係,應該如何關聯?
- django 兩個表或多個表聯合查詢Django
- sql 多表關聯刪除表資料SQL
- DataSet多表關聯實現本地資料複雜的查詢
- 解決excel兩表之間資料關聯關係,知道這幾招就夠了Excel
- 鍵值資料庫與關聯式資料庫有沒有融合的可能?資料庫
- 快速刪除有外來鍵關聯的資料庫的資料資料庫
- SQL多個表實現聯合查詢SQL
- 查詢皮膚中如何實現兩個 select 下拉框的關聯查詢?
- 如何簡單實現關聯型別資料的Excel匯出?型別Excel
- 設計HBase資料庫資料表有關的建議資料庫
- 將 Oracle ASM 新增到現有資料庫OracleASM資料庫
- 一個表空間有多個資料檔案,新增資料時的寫入順序和分配演算法初探實驗(上)演算法
- 利用 canvas 實現資料壓縮Canvas
- 【實驗】利用可傳輸表空間技術實現資料的高效遷移