快速业务通道

struts构建文件上传(七) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-21

struts构建文件上传(七)

时间:2011-01-17

package tester.business.maitain; import tclcc.tester.business.maitain.Trainplan; import tclcc.tester.util.DBConn; import java.sql.*; import java.util.*; public class TrainPlanDAO { private DBConn dbconn = null; private Connection conn = null; private static final String ADD_TRAINPLAN= "INSERT INTO KS_TRAINPLAN (p_id,p_title,issue_time,issuer,p_content,p_accessory) VALUES (lpad(SEQ_P_ID.nextVal,10,´0´),?,?,to_date(?,´yyyy-mm-dd´),?,?,?)"; private final static String UPDATE_TRAINPLAN= "UPDATE KS_TRAINPLAN set p_id=?,p_title=?,post_index=?,issue_time=to_date(?,´yyyy-mm-dd´),issuer=?,p_content=?,p_accessory=? where p_id=?"; /** * get a connection from a DB pool * @return Connection */ public TrainPlanDAO() { try { dbconn = new DBConn(); conn = dbconn.getConnection(); } catch (Exception ex) { ex.printStackTrace(); } } /** * add a row into DB * @param examinee Examinee * @throws SQLException */ public void addTrainPlan(Trainplan trainPlan) throws SQLException { PreparedStatement pstmt = null; try { pstmt = conn.prepareStatement(ADD_TRAINPLAN); pstmt.setString(1, trainPlan.getP_title()); pstmt.setString(2, trainPlan.getIssue_time()); pstmt.setString(3, trainPlan.getIssuer()); pstmt.setString(4, trainPlan.getP_content()); pstmt.setString(5, trainPlan.getP_accessory()); pstmt.executeUpdate(); } catch (SQLException ex) { ex.printStackTrace(); } finally { try { pstmt.close(); //conn.close(); } catch (SQLException ex1) { } } } /** * remove a row from DB * @param trainPlan TrainPlan * @throws SQLException */ public void removeTrainPlan(Trainplan trainPlan) throws SQLException { this.removeTrainPlan(trainPlan.getP_id()); } /** * remove a row from DB * @param p_id int * @throws SQLException */ public void removeTrainPlan(int p_id) throws SQLException { Statement stmt = null; try { stmt = conn.createStatement(); stmt.execute("DELETE FROM ks_trainplan WHERE p_id=" + p_id); } catch (SQLException ex) { ex.printStackTrace(); throw new SQLException("SQLExction on : TrainPlanDAO.removeExaminee()"); } finally { try { conn.close(); } catch (SQLException ex1) { ex1.printStackTrace(); } } } /** * update a row * @param examinee Examinee * @throws SQLException */ public void updateTrainPlan(Trainplan trainPlan) throws SQLException { PreparedStatement pstmt = null; try { // UPDATE_TRAINPLAN = UPDATE_TRAINPLAN + "where p_id =" + trainPlan.getP_id(); //the condition need modification pstmt = conn.prepareStatement(UPDATE_TRAINPLAN); pstmt.setInt(1, trainPlan.getP_id()); pstmt.setString(2, trainPlan.getP_title()); pstmt.setInt(3, trainPlan.getPost_index()); pstmt.setString(4, trainPlan.getIssue_time()); pstmt.setString(5, trainPlan.getIssuer()); pstmt.setString(6, trainPlan.getP_content()); pstmt.setString(7, trainPlan.getP_accessory()); pstmt.setInt(8,trainPlan.getP_id()); pstmt.executeUpdate(); } /*catch (SQLException ex) { ex.getStackTrac

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号