e76d2c014416d16504c48070cc95593ea3f86373.svn-base 570 B

123456789101112131415
  1. package com.chinacreator.process.dao;
  2. import java.sql.SQLException;
  3. import org.springframework.stereotype.Component;
  4. import com.chinacreator.process.util.DataSource;
  5. import com.frameworkset.common.poolman.SQLExecutor;
  6. @Component
  7. public class CSactiveDao {
  8. public void update(String id,String resultcode,String errorInfo,String state) throws SQLException{
  9. String sql = "update TD_CSACTIVITY_HANDLE set RESULTCODE=? ,ERRORINFO =? ,state = ?,UPDATETIME=sysdate where id = ?";
  10. SQLExecutor.updateWithDBName(DataSource.NET3G, sql, resultcode,errorInfo,state,id);
  11. }
  12. }