public boolean insert() { PreparedStatement pstmt = null; if (!mflag) { con = DBConnPool.getConnection(); } try { pstmt = con.prepareStatement( "INSERT INTO LEDEPolicyMailInfo VALUES( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?)"); if (this.getFreeNo() == null || this.getFreeNo().equals("null")) { pstmt.setNull(1, 12); } else { pstmt.setString(1, this.getFreeNo()); } if (this.getEmail() == null || this.getEmail().equals("null")) { pstmt.setNull(2, 12); } else { pstmt.setString(2, this.getEmail()); } if (this.getName() == null || this.getName().equals("null")) { pstmt.setNull(3, 12); } else { pstmt.setString(3, this.getName()); } if (this.getMailContent() == null || this.getMailContent().equals("null")) { pstmt.setNull(4, 12); } else { pstmt.setString(4, this.getMailContent()); } if (this.getPdfAddress() == null || this.getPdfAddress().equals("null")) { pstmt.setNull(5, 12); } else { pstmt.setString(5, this.getPdfAddress()); } if (this.getSendMailFlg() == null || this.getSendMailFlg().equals("null")) { pstmt.setNull(6, 12); } else { pstmt.setString(6, this.getSendMailFlg()); } if (this.getSendMailDate() == null || this.getSendMailDate().equals("null")) { pstmt.setNull(7, 93); } else { pstmt.setDate(7, Date.valueOf(this.getSendMailDate())); } if (this.getSendMailTime() == null || this.getSendMailTime().equals("null")) { pstmt.setNull(8, 12); } else { pstmt.setString(8, this.getSendMailTime()); } if (this.getProductCode() == null || this.getProductCode().equals("null")) { pstmt.setNull(9, 12); } else { pstmt.setString(9, this.getProductCode()); } if (this.getOperator() == null || this.getOperator().equals("null")) { pstmt.setNull(10, 12); } else { pstmt.setString(10, this.getOperator()); } if (this.getMakeDate() == null || this.getMakeDate().equals("null")) { pstmt.setNull(11, 93); } else { pstmt.setDate(11, Date.valueOf(this.getMakeDate())); } if (this.getMakeTime() == null || this.getMakeTime().equals("null")) { pstmt.setNull(12, 12); } else { pstmt.setString(12, this.getMakeTime()); } if (this.getModifyDate() == null || this.getModifyDate().equals("null")) { pstmt.setNull(13, 93); } else { pstmt.setDate(13, Date.valueOf(this.getModifyDate())); } if (this.getModifyTime() == null || this.getModifyTime().equals("null")) { pstmt.setNull(14, 12); } else { pstmt.setString(14, this.getModifyTime()); } // execute sql pstmt.executeUpdate(); pstmt.close(); } catch (Exception ex) { // @@错误处理 this.mErrors.copyAllErrors(db.mErrors); CError tError = new CError(); tError.moduleName = "LEDEPolicyMailInfoDB"; tError.functionName = "insert()"; tError.errorMessage = ex.toString(); this.mErrors.addOneError(tError); try { pstmt.close(); } catch (Exception e) { } if (!mflag) { try { con.close(); } catch (Exception e) { } } return false; } if (!mflag) { try { con.close(); } catch (Exception e) { } } return true; }
/** * 新增操作 * * @return boolean */ public boolean insert() { PreparedStatement pstmt = null; if (!mflag) { con = DBConnPool.getConnection(); } try { int tCount = this.size(); pstmt = con.prepareStatement( "INSERT INTO LECBnf VALUES( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?)"); for (int i = 1; i <= tCount; i++) { if (this.get(i).getContNo() == null || this.get(i).getContNo().equals("null")) { pstmt.setString(1, null); } else { pstmt.setString(1, this.get(i).getContNo()); } if (this.get(i).getPolNo() == null || this.get(i).getPolNo().equals("null")) { pstmt.setString(2, null); } else { pstmt.setString(2, this.get(i).getPolNo()); } if (this.get(i).getInsuredNo() == null || this.get(i).getInsuredNo().equals("null")) { pstmt.setString(3, null); } else { pstmt.setString(3, this.get(i).getInsuredNo()); } if (this.get(i).getBnfType() == null || this.get(i).getBnfType().equals("null")) { pstmt.setString(4, null); } else { pstmt.setString(4, this.get(i).getBnfType()); } pstmt.setDouble(5, this.get(i).getBnfNo()); if (this.get(i).getBnfGrade() == null || this.get(i).getBnfGrade().equals("null")) { pstmt.setString(6, null); } else { pstmt.setString(6, this.get(i).getBnfGrade()); } if (this.get(i).getRelationToInsured() == null || this.get(i).getRelationToInsured().equals("null")) { pstmt.setString(7, null); } else { pstmt.setString(7, this.get(i).getRelationToInsured()); } pstmt.setDouble(8, this.get(i).getBnfLot()); if (this.get(i).getCustomerNo() == null || this.get(i).getCustomerNo().equals("null")) { pstmt.setString(9, null); } else { pstmt.setString(9, this.get(i).getCustomerNo()); } if (this.get(i).getName() == null || this.get(i).getName().equals("null")) { pstmt.setString(10, null); } else { pstmt.setString(10, this.get(i).getName()); } if (this.get(i).getSex() == null || this.get(i).getSex().equals("null")) { pstmt.setString(11, null); } else { pstmt.setString(11, this.get(i).getSex()); } if (this.get(i).getBirthday() == null || this.get(i).getBirthday().equals("null")) { pstmt.setDate(12, null); } else { pstmt.setDate(12, Date.valueOf(this.get(i).getBirthday())); } if (this.get(i).getBnfIDType() == null || this.get(i).getBnfIDType().equals("null")) { pstmt.setString(13, null); } else { pstmt.setString(13, this.get(i).getBnfIDType()); } if (this.get(i).getBnfIDNo() == null || this.get(i).getBnfIDNo().equals("null")) { pstmt.setString(14, null); } else { pstmt.setString(14, this.get(i).getBnfIDNo()); } if (this.get(i).getOperator() == null || this.get(i).getOperator().equals("null")) { pstmt.setString(15, null); } else { pstmt.setString(15, this.get(i).getOperator()); } if (this.get(i).getMakeDate() == null || this.get(i).getMakeDate().equals("null")) { pstmt.setDate(16, null); } else { pstmt.setDate(16, Date.valueOf(this.get(i).getMakeDate())); } if (this.get(i).getMakeTime() == null || this.get(i).getMakeTime().equals("null")) { pstmt.setString(17, null); } else { pstmt.setString(17, this.get(i).getMakeTime()); } if (this.get(i).getModifyDate() == null || this.get(i).getModifyDate().equals("null")) { pstmt.setDate(18, null); } else { pstmt.setDate(18, Date.valueOf(this.get(i).getModifyDate())); } if (this.get(i).getModifyTime() == null || this.get(i).getModifyTime().equals("null")) { pstmt.setString(19, null); } else { pstmt.setString(19, this.get(i).getModifyTime()); } pstmt.addBatch(); } pstmt.executeBatch(); pstmt.close(); } catch (Exception ex) { // @@错误处理 ex.printStackTrace(); this.mErrors.copyAllErrors(db.mErrors); CError tError = new CError(); tError.moduleName = "LECBnfDBSet"; tError.functionName = "insert()"; tError.errorMessage = ex.toString(); this.mErrors.addOneError(tError); try { pstmt.close(); } catch (Exception e) { e.printStackTrace(); } if (!mflag) { try { con.close(); } catch (Exception e) { e.printStackTrace(); } } return false; } if (!mflag) { try { con.close(); } catch (Exception e) { e.printStackTrace(); } } return true; }
public boolean insert() { PreparedStatement pstmt = null; if (!mflag) { con = DBConnPool.getConnection(); } try { pstmt = con.prepareStatement( "INSERT INTO LECInsured VALUES( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?)"); if (this.getContNo() == null || this.getContNo().equals("null")) { pstmt.setNull(1, 12); } else { pstmt.setString(1, this.getContNo()); } if (this.getInsuredNo() == null || this.getInsuredNo().equals("null")) { pstmt.setNull(2, 12); } else { pstmt.setString(2, this.getInsuredNo()); } if (this.getAppntNo() == null || this.getAppntNo().equals("null")) { pstmt.setNull(3, 12); } else { pstmt.setString(3, this.getAppntNo()); } if (this.getManageCom() == null || this.getManageCom().equals("null")) { pstmt.setNull(4, 12); } else { pstmt.setString(4, this.getManageCom()); } if (this.getExecuteCom() == null || this.getExecuteCom().equals("null")) { pstmt.setNull(5, 12); } else { pstmt.setString(5, this.getExecuteCom()); } if (this.getMasterContNo() == null || this.getMasterContNo().equals("null")) { pstmt.setNull(6, 12); } else { pstmt.setString(6, this.getMasterContNo()); } if (this.getMasterInsuredNo() == null || this.getMasterInsuredNo().equals("null")) { pstmt.setNull(7, 12); } else { pstmt.setString(7, this.getMasterInsuredNo()); } if (this.getRelationToMainInsured() == null || this.getRelationToMainInsured().equals("null")) { pstmt.setNull(8, 12); } else { pstmt.setString(8, this.getRelationToMainInsured()); } if (this.getRelationToAppnt() == null || this.getRelationToAppnt().equals("null")) { pstmt.setNull(9, 12); } else { pstmt.setString(9, this.getRelationToAppnt()); } if (this.getAddressNo() == null || this.getAddressNo().equals("null")) { pstmt.setNull(10, 12); } else { pstmt.setString(10, this.getAddressNo()); } if (this.getName() == null || this.getName().equals("null")) { pstmt.setNull(11, 12); } else { pstmt.setString(11, this.getName()); } if (this.getSex() == null || this.getSex().equals("null")) { pstmt.setNull(12, 12); } else { pstmt.setString(12, this.getSex()); } if (this.getBirthday() == null || this.getBirthday().equals("null")) { pstmt.setNull(13, 91); } else { pstmt.setDate(13, Date.valueOf(this.getBirthday())); } if (this.getInsuredIDType() == null || this.getInsuredIDType().equals("null")) { pstmt.setNull(14, 12); } else { pstmt.setString(14, this.getInsuredIDType()); } if (this.getInsuredIDNo() == null || this.getInsuredIDNo().equals("null")) { pstmt.setNull(15, 12); } else { pstmt.setString(15, this.getInsuredIDNo()); } if (this.getNationality() == null || this.getNationality().equals("null")) { pstmt.setNull(16, 12); } else { pstmt.setString(16, this.getNationality()); } if (this.getMarriage() == null || this.getMarriage().equals("null")) { pstmt.setNull(17, 12); } else { pstmt.setString(17, this.getMarriage()); } if (this.getHealth() == null || this.getHealth().equals("null")) { pstmt.setNull(18, 12); } else { pstmt.setString(18, this.getHealth()); } pstmt.setDouble(19, this.getStature()); pstmt.setDouble(20, this.getAvoirdupois()); if (this.getDegree() == null || this.getDegree().equals("null")) { pstmt.setNull(21, 12); } else { pstmt.setString(21, this.getDegree()); } if (this.getCreditGrade() == null || this.getCreditGrade().equals("null")) { pstmt.setNull(22, 12); } else { pstmt.setString(22, this.getCreditGrade()); } if (this.getBankName() == null || this.getBankName().equals("null")) { pstmt.setNull(23, 12); } else { pstmt.setString(23, this.getBankName()); } if (this.getAccName() == null || this.getAccName().equals("null")) { pstmt.setNull(24, 12); } else { pstmt.setString(24, this.getAccName()); } if (this.getBankAccNo() == null || this.getBankAccNo().equals("null")) { pstmt.setNull(25, 12); } else { pstmt.setString(25, this.getBankAccNo()); } if (this.getOccupationType() == null || this.getOccupationType().equals("null")) { pstmt.setNull(26, 12); } else { pstmt.setString(26, this.getOccupationType()); } if (this.getOccupationCode() == null || this.getOccupationCode().equals("null")) { pstmt.setNull(27, 12); } else { pstmt.setString(27, this.getOccupationCode()); } if (this.getWorkType() == null || this.getWorkType().equals("null")) { pstmt.setNull(28, 12); } else { pstmt.setString(28, this.getWorkType()); } if (this.getPluralityType() == null || this.getPluralityType().equals("null")) { pstmt.setNull(29, 12); } else { pstmt.setString(29, this.getPluralityType()); } if (this.getSmokeFlag() == null || this.getSmokeFlag().equals("null")) { pstmt.setNull(30, 12); } else { pstmt.setString(30, this.getSmokeFlag()); } if (this.getContPlanCode() == null || this.getContPlanCode().equals("null")) { pstmt.setNull(31, 12); } else { pstmt.setString(31, this.getContPlanCode()); } pstmt.setDouble(32, this.getBMI()); pstmt.setDouble(33, this.getInsuredPeoples()); if (this.getInsuredState() == null || this.getInsuredState().equals("null")) { pstmt.setNull(34, 12); } else { pstmt.setString(34, this.getInsuredState()); } if (this.getOperator() == null || this.getOperator().equals("null")) { pstmt.setNull(35, 12); } else { pstmt.setString(35, this.getOperator()); } if (this.getMakeDate() == null || this.getMakeDate().equals("null")) { pstmt.setNull(36, 91); } else { pstmt.setDate(36, Date.valueOf(this.getMakeDate())); } if (this.getMakeTime() == null || this.getMakeTime().equals("null")) { pstmt.setNull(37, 12); } else { pstmt.setString(37, this.getMakeTime()); } if (this.getModifyDate() == null || this.getModifyDate().equals("null")) { pstmt.setNull(38, 91); } else { pstmt.setDate(38, Date.valueOf(this.getModifyDate())); } if (this.getModifyTime() == null || this.getModifyTime().equals("null")) { pstmt.setNull(39, 12); } else { pstmt.setString(39, this.getModifyTime()); } // execute sql pstmt.executeUpdate(); pstmt.close(); } catch (Exception ex) { // @@错误处理 this.mErrors.copyAllErrors(db.mErrors); CError tError = new CError(); tError.moduleName = "LECInsuredDB"; tError.functionName = "insert()"; tError.errorMessage = ex.toString(); this.mErrors.addOneError(tError); try { pstmt.close(); } catch (Exception e) { } if (!mflag) { try { con.close(); } catch (Exception e) { } } return false; } if (!mflag) { try { con.close(); } catch (Exception e) { } } return true; }