Commit 8750b64a 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@177259 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8339dae2
...@@ -64,12 +64,17 @@ public class MultiplePtcnWizPos extends ValidatorEJB implements MultiplePtcnWizP ...@@ -64,12 +64,17 @@ public class MultiplePtcnWizPos extends ValidatorEJB implements MultiplePtcnWizP
boolean isLocalConn = false; boolean isLocalConn = false;
try try
{ {
conn = null; //Added & replace by sarita on 27DEC2017
/*conn = null;
ConnDriver connDriver = new ConnDriver(); ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM"); conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false); conn.setAutoCommit(false);
connDriver = null; connDriver = null;*/
if(conn == null)
{
conn = getConnection();
isLocalConn = true; isLocalConn = true;
}
if(domString !=null && domString.length() > 0) if(domString !=null && domString.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