📄 role_hdrbeanfunctionset_0bcff8da.java
字号:
package com.leeman.wkexs.master.rolemgt.dao.websphere_deploy.ORACLE_V9_1;import com.ibm.websphere.rsadapter.WSInteractionSpec;import com.ibm.ws.rsadapter.exceptions.DataStoreAdapterException;import javax.resource.cci.Record;import javax.resource.cci.IndexedRecord;import java.sql.*;/** * Role_HdrBeanFunctionSet_0bcff8da */public class Role_HdrBeanFunctionSet_0bcff8da extends com.ibm.ws.rsadapter.cci.WSResourceAdapterBase implements com.ibm.websphere.rsadapter.DataAccessFunctionSet { private java.util.HashMap functionHash; /** * Create */ public void Create(IndexedRecord inputRecord, Object connection, WSInteractionSpec interactionSpec) throws DataStoreAdapterException { PreparedStatement pstmt = null; try { pstmt = prepareStatement(connection,"INSERT INTO WKEXS.ROLE_HDR (COMPANY_ID, ROLE_ID, ROLE_NAME, CREATE_DTTM, CREATE_BY, LAST_MODIFY_DTTM, LAST_MODIFY_BY) VALUES (?, ?, ?, ?, ?, ?, ?)"); // For column COMPANY_ID { String tempString; tempString=(String)inputRecord.get(0); if(tempString==null) pstmt.setNull(1,java.sql.Types.VARCHAR); else pstmt.setString(1,tempString); } // For column ROLE_ID { String tempString; tempString=(String)inputRecord.get(1); if(tempString==null) pstmt.setNull(2,java.sql.Types.VARCHAR); else pstmt.setString(2,tempString); } // For column ROLE_NAME { String tempString; tempString=(String)inputRecord.get(2); if(tempString==null) pstmt.setNull(3,java.sql.Types.VARCHAR); else pstmt.setString(3,tempString); } // For column CREATE_DTTM { java.sql.Timestamp tempTimestamp; tempTimestamp=(java.sql.Timestamp)inputRecord.get(3); if(tempTimestamp==null) pstmt.setNull(4,java.sql.Types.TIMESTAMP); else pstmt.setTimestamp(4,tempTimestamp); } // For column CREATE_BY { String tempString; tempString=(String)inputRecord.get(4); if(tempString==null) pstmt.setNull(5,java.sql.Types.VARCHAR); else pstmt.setString(5,tempString); } // For column LAST_MODIFY_DTTM { java.sql.Timestamp tempTimestamp; tempTimestamp=(java.sql.Timestamp)inputRecord.get(5); if(tempTimestamp==null) pstmt.setNull(6,java.sql.Types.TIMESTAMP); else pstmt.setTimestamp(6,tempTimestamp); } // For column LAST_MODIFY_BY { String tempString; tempString=(String)inputRecord.get(6); if(tempString==null) pstmt.setNull(7,java.sql.Types.VARCHAR); else pstmt.setString(7,tempString); } if (pstmt.executeUpdate()==0) throw new DataStoreAdapterException("DSA_ERROR",new javax.ejb.NoSuchEntityException(), this.getClass()); } catch (SQLException e) { throw new DataStoreAdapterException("DSA_ERROR", e ,this.getClass()); } finally { try { if(pstmt != null) { returnPreparedStatement(connection, pstmt); } } catch (SQLException ignored) {} } } /** * Remove */ public void Remove(IndexedRecord inputRecord, Object connection, WSInteractionSpec interactionSpec) throws DataStoreAdapterException { PreparedStatement pstmt = null; try { pstmt = prepareStatement(connection,"DELETE FROM WKEXS.ROLE_HDR WHERE COMPANY_ID = ? AND ROLE_ID = ?"); // For column COMPANY_ID { String tempString; tempString=(String)inputRecord.get(0); if(tempString==null) pstmt.setNull(1,java.sql.Types.VARCHAR); else pstmt.setString(1,tempString); } // For column ROLE_ID { String tempString; tempString=(String)inputRecord.get(1); if(tempString==null) pstmt.setNull(2,java.sql.Types.VARCHAR); else pstmt.setString(2,tempString); } if (pstmt.executeUpdate()==0) throw new DataStoreAdapterException("DSA_ERROR",new javax.ejb.NoSuchEntityException(), this.getClass()); } catch (SQLException e) { throw new DataStoreAdapterException("DSA_ERROR", e ,this.getClass()); } finally { try { if(pstmt != null) { returnPreparedStatement(connection, pstmt); } } catch (SQLException ignored) {} } } /** * Store */ public void Store(IndexedRecord inputRecord, Object connection, WSInteractionSpec interactionSpec) throws DataStoreAdapterException { PreparedStatement pstmt = null; try { pstmt = prepareStatement(connection,"UPDATE WKEXS.ROLE_HDR SET ROLE_NAME = ?, CREATE_DTTM = ?, CREATE_BY = ?, LAST_MODIFY_DTTM = ?, LAST_MODIFY_BY = ? WHERE COMPANY_ID = ? AND ROLE_ID = ?"); // For column COMPANY_ID { String tempString; tempString=(String)inputRecord.get(0); if(tempString==null) pstmt.setNull(6,java.sql.Types.VARCHAR); else pstmt.setString(6,tempString); } // For column ROLE_ID { String tempString; tempString=(String)inputRecord.get(1); if(tempString==null) pstmt.setNull(7,java.sql.Types.VARCHAR); else pstmt.setString(7,tempString); } // For column ROLE_NAME { String tempString; tempString=(String)inputRecord.get(2); if(tempString==null) pstmt.setNull(1,java.sql.Types.VARCHAR); else pstmt.setString(1,tempString); } // For column CREATE_DTTM { java.sql.Timestamp tempTimestamp; tempTimestamp=(java.sql.Timestamp)inputRecord.get(3); if(tempTimestamp==null) pstmt.setNull(2,java.sql.Types.TIMESTAMP); else pstmt.setTimestamp(2,tempTimestamp); } // For column CREATE_BY { String tempString; tempString=(String)inputRecord.get(4); if(tempString==null) pstmt.setNull(3,java.sql.Types.VARCHAR); else pstmt.setString(3,tempString); } // For column LAST_MODIFY_DTTM { java.sql.Timestamp tempTimestamp; tempTimestamp=(java.sql.Timestamp)inputRecord.get(5); if(tempTimestamp==null) pstmt.setNull(4,java.sql.Types.TIMESTAMP); else pstmt.setTimestamp(4,tempTimestamp); } // For column LAST_MODIFY_BY { String tempString; tempString=(String)inputRecord.get(6); if(tempString==null) pstmt.setNull(5,java.sql.Types.VARCHAR); else pstmt.setString(5,tempString); } if (pstmt.executeUpdate()==0) throw new DataStoreAdapterException("DSA_ERROR",new javax.ejb.NoSuchEntityException(), this.getClass()); } catch (SQLException e) { throw new DataStoreAdapterException("DSA_ERROR", e ,this.getClass()); } finally { try { if(pstmt != null) { returnPreparedStatement(connection, pstmt); } } catch (SQLException ignored) {} } } /** * StoreUsingOCC */ public void StoreUsingOCC(IndexedRecord inputRecord, Object connection, WSInteractionSpec interactionSpec) throws DataStoreAdapterException { PreparedStatement pstmt = null; try { pstmt = prepareStatement(connection,"UPDATE WKEXS.ROLE_HDR SET ROLE_NAME = ?, CREATE_DTTM = ?, CREATE_BY = ?, LAST_MODIFY_DTTM = ?, LAST_MODIFY_BY = ? WHERE COMPANY_ID = ? AND ROLE_ID = ?"); // For column COMPANY_ID { String tempString; tempString=(String)inputRecord.get(0); if(tempString==null) pstmt.setNull(6,java.sql.Types.VARCHAR); else pstmt.setString(6,tempString); } // For column ROLE_ID { String tempString; tempString=(String)inputRecord.get(1); if(tempString==null) pstmt.setNull(7,java.sql.Types.VARCHAR); else pstmt.setString(7,tempString); } // For column ROLE_NAME { String tempString; tempString=(String)inputRecord.get(2); if(tempString==null) pstmt.setNull(1,java.sql.Types.VARCHAR); else pstmt.setString(1,tempString); } // For column CREATE_DTTM { java.sql.Timestamp tempTimestamp; tempTimestamp=(java.sql.Timestamp)inputRecord.get(3); if(tempTimestamp==null) pstmt.setNull(2,java.sql.Types.TIMESTAMP); else pstmt.setTimestamp(2,tempTimestamp); } // For column CREATE_BY { String tempString; tempString=(String)inputRecord.get(4); if(tempString==null) pstmt.setNull(3,java.sql.Types.VARCHAR); else pstmt.setString(3,tempString); } // For column LAST_MODIFY_DTTM { java.sql.Timestamp tempTimestamp; tempTimestamp=(java.sql.Timestamp)inputRecord.get(5); if(tempTimestamp==null) pstmt.setNull(4,java.sql.Types.TIMESTAMP); else pstmt.setTimestamp(4,tempTimestamp); } // For column LAST_MODIFY_BY { String tempString; tempString=(String)inputRecord.get(6); if(tempString==null) pstmt.setNull(5,java.sql.Types.VARCHAR); else pstmt.setString(5,tempString); } IndexedRecord oldRecord = interactionSpec.getOldRecord(); if (pstmt.executeUpdate()==0) throw new DataStoreAdapterException("DSA_ERROR",new javax.ejb.NoSuchEntityException(), this.getClass()); } catch (SQLException e) { throw new DataStoreAdapterException("DSA_ERROR", e ,this.getClass()); } finally { try { if(pstmt != null) { returnPreparedStatement(connection, pstmt); } } catch (SQLException ignored) {} } } /** * FindByPrimaryKey */ public javax.resource.cci.Record FindByPrimaryKey(IndexedRecord inputRecord, Object connection, WSInteractionSpec interactionSpec) throws DataStoreAdapterException { PreparedStatement pstmt = null; ResultSet result=null; try { pstmt = prepareStatement(connection,"SELECT T1.COMPANY_ID, T1.ROLE_ID, T1.ROLE_NAME, T1.CREATE_DTTM, T1.CREATE_BY, T1.LAST_MODIFY_DTTM, T1.LAST_MODIFY_BY FROM WKEXS.ROLE_HDR T1 WHERE T1.COMPANY_ID = ? AND T1.ROLE_ID = ?"); // For column COMPANY_ID { String tempString; tempString=(String)inputRecord.get(0); if(tempString==null) pstmt.setNull(1,java.sql.Types.VARCHAR); else pstmt.setString(1,tempString); } // For column ROLE_ID { String tempString; tempString=(String)inputRecord.get(1); if(tempString==null) pstmt.setNull(2,java.sql.Types.VARCHAR); else pstmt.setString(2,tempString); } result = pstmt.executeQuery(); } catch (SQLException e) { throw new DataStoreAdapterException("DSA_ERROR", e ,this.getClass()); } return createCCIRecord(connection, result); } /** * FindByPrimaryKeyForUpdate */ public javax.resource.cci.Record FindByPrimaryKeyForUpdate(IndexedRecord inputRecord, Object connection, WSInteractionSpec interactionSpec) throws DataStoreAdapterException { PreparedStatement pstmt = null; ResultSet result=null; try { pstmt = prepareStatement(connection,"SELECT T1.COMPANY_ID, T1.ROLE_ID, T1.ROLE_NAME, T1.CREATE_DTTM, T1.CREATE_BY, T1.LAST_MODIFY_DTTM, T1.LAST_MODIFY_BY FROM WKEXS.ROLE_HDR T1 WHERE T1.COMPANY_ID = ? AND T1.ROLE_ID = ? FOR UPDATE "); // For column COMPANY_ID { String tempString; tempString=(String)inputRecord.get(0); if(tempString==null) pstmt.setNull(1,java.sql.Types.VARCHAR); else pstmt.setString(1,tempString); } // For column ROLE_ID { String tempString; tempString=(String)inputRecord.get(1); if(tempString==null) pstmt.setNull(2,java.sql.Types.VARCHAR); else pstmt.setString(2,tempString); } result = pstmt.executeQuery(); } catch (SQLException e) { throw new DataStoreAdapterException("DSA_ERROR", e ,this.getClass()); } return createCCIRecord(connection, result); } /** * Role_HdrBeanFunctionSet_0bcff8da */ public Role_HdrBeanFunctionSet_0bcff8da() { functionHash=new java.util.HashMap(6); functionHash.put("Create",new Integer(0)); functionHash.put("Remove",new Integer(1)); functionHash.put("Store",new Integer(2)); functionHash.put("StoreUsingOCC",new Integer(3)); functionHash.put("FindByPrimaryKey",new Integer(4)); functionHash.put("FindByPrimaryKeyForUpdate",new Integer(5)); } /** * execute */ public Record execute(WSInteractionSpec interactionSpec, IndexedRecord inputRecord, Object connection) throws javax.resource.ResourceException { String functionName=interactionSpec.getFunctionName(); Record outputRecord=null; int functionIndex=((Integer)functionHash.get(functionName)).intValue(); switch (functionIndex) { case 0: Create(inputRecord,connection,interactionSpec); break; case 1: Remove(inputRecord,connection,interactionSpec); break; case 2: Store(inputRecord,connection,interactionSpec); break; case 3: StoreUsingOCC(inputRecord,connection,interactionSpec); break; case 4: outputRecord=FindByPrimaryKey(inputRecord,connection,interactionSpec); break; case 5: outputRecord=FindByPrimaryKeyForUpdate(inputRecord,connection,interactionSpec); break; } return outputRecord; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -