Commit 9d34cb9f authored by arawankar's avatar arawankar

PayrVoucherHld.java

PayrVoucherRls.java
-Changes made related to connection.
- Change driveritm to getconnection method

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@199241 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4e33d07c
......@@ -62,7 +62,10 @@ public class PayrVoucherHld extends ActionHandlerEJB implements PayrVoucherHldLo
ConnDriver connDriver = new ConnDriver();
try
{
conn = connDriver.getConnectDB("DriverITM");
//Modified by Anjali R. on [05/04/2019][Start]
//conn = connDriver.getConnectDB("DriverITM");
conn = getConnection();
//Modified by Anjali R. on [05/04/2019][End]
conn.setAutoCommit(false);
connDriver = null;
stmt = conn.createStatement();
......
......@@ -62,7 +62,10 @@ public class PayrVoucherRls extends ActionHandlerEJB implements PayrVoucherRlsLo
ConnDriver connDriver = new ConnDriver();
try
{
conn = connDriver.getConnectDB("DriverITM");
//Modified by Anjali R. on [05/04/2019][Start]
//conn = connDriver.getConnectDB("DriverITM");
conn = getConnection();
//Modified by Anjali R. on [05/04/2019][End]
conn.setAutoCommit(false);
connDriver = null;
stmt = conn.createStatement();
......
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