Commit e3ed3939 authored by ssalve's avatar ssalve

Sarita : done changes to add getConnection instead getConnectionDB("DriverITM") on 27DEC2017

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@177268 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 00d70abd
...@@ -977,8 +977,10 @@ public class PalletReqGenPrc extends ProcessEJB implements PalletReqGenPrcLocal, ...@@ -977,8 +977,10 @@ public class PalletReqGenPrc extends ProcessEJB implements PalletReqGenPrcLocal,
ConnDriver connDriver = new ConnDriver(); ConnDriver connDriver = new ConnDriver();
if(conn==null) if(conn==null)
{ {
conn = connDriver.getConnectDB("DriverITM"); //Added and replace by sarita on 27DEC2017
conn.setAutoCommit(false); /*conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false); */
conn = getConnection();
} }
if(xmlString != null && xmlString.trim().length()!=0) if(xmlString != null && xmlString.trim().length()!=0)
......
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