Commit 2d0466e2 authored by prane's avatar prane

DriverITM is changed to getConnection()

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@175523 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 310cbb9f
......@@ -59,8 +59,9 @@ E12GenericUtility genericUtility =new E12GenericUtility();
String custCode="",custName="",prdCode="",itemSer="",stanCode="",stanCodeNew="",salesValue="",tranId="";
int cnt=0;
try {
ConnDriver con = new ConnDriver();
conn = con.getConnectDB("DriverITM");
//ConnDriver con = new ConnDriver();
//conn = con.getConnectDB("DriverITM");
conn = getConnection();
System.out.println("In getdata Station update process:::");
prdCodeFromDom = checkNull(genericUtility.getColumnValue("prd_code_from", dom));
prdCodeToDom = checkNull(genericUtility.getColumnValue("prd_code_to", dom));
......@@ -173,8 +174,9 @@ E12GenericUtility genericUtility =new E12GenericUtility();
try {
ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB();
System.out.println("In process pricelist:::");
ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
//ConnDriver connDriver = new ConnDriver();
//conn = connDriver.getConnectDB("DriverITM");
conn = getConnection();
chgTerm = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"termId");
chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"loginCode");
......
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