Commit 54ca8fac authored by sjarande's avatar sjarande

isClosed() is commented as isClosed() is giving problem


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99524 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 162c4466
...@@ -8543,12 +8543,12 @@ public class DistCommon ...@@ -8543,12 +8543,12 @@ public class DistCommon
throw new ITMException(e); throw new ITMException(e);
} }
} }
if(rs != null && !rs.isClosed()) if(rs != null )//&& !rs.isClosed()) isClosed() is giving problem
{ {
rs.close(); rs.close();
rs = null; rs = null;
} }
if (pstmt != null && !pstmt.isClosed()) if (pstmt != null )//&& !pstmt.isClosed()) isClosed() is giving problem
{ {
pstmt.clearParameters(); pstmt.clearParameters();
pstmt.close(); pstmt.close();
......
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