Commit 076738e0 authored by vvengurlekar's avatar vvengurlekar

AssetInstallIC.java - Resolve unable to get manage connection issue by closing connection


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@194411 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4e0c987e
......@@ -1224,6 +1224,12 @@ public class AssetInstallIC extends ValidatorEJB implements AssetInstallLocal,As
pstmt.close();
pstmt = null;
}
//Added By Varsha V on 13-12-18 for connection closing
if(conn != null)
{
conn.close();
conn = null;
}
}
catch(Exception e)
{
......
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