Commit cc433125 authored by prane's avatar prane

DriverITM is changed to getConnection()

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@175542 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4e1ddbf5
...@@ -96,8 +96,9 @@ public class AwacsToES3Prc extends ProcessEJB implements AwacsToES3PrcLocal,Awac ...@@ -96,8 +96,9 @@ public class AwacsToES3Prc extends ProcessEJB implements AwacsToES3PrcLocal,Awac
userInfo.setRemoteHost(genericUtility.getValueFromXTRA_PARAMS(xtraParams, "termId")); userInfo.setRemoteHost(genericUtility.getValueFromXTRA_PARAMS(xtraParams, "termId"));
try try
{ {
ConnDriver connDriver = new ConnDriver(); //ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM"); //conn = connDriver.getConnectDB("DriverITM");
conn = getConnection();
conn.setAutoCommit(false); conn.setAutoCommit(false);
sdf = new SimpleDateFormat(genericUtility.getApplDateFormat()); sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
prdCodeDom = checkNull(genericUtility.getColumnValue("prd_code", headerDom)); prdCodeDom = checkNull(genericUtility.getColumnValue("prd_code", headerDom));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment