Commit e41d8b1b authored by ajadhav's avatar ajadhav

unclosed connection, statment and resultset to be closed

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@184497 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 64dd5402
......@@ -324,7 +324,14 @@ public class DistIssueAct extends ActionHandlerEJB implements DistIssueActLocal,
//Added arun pal 12-oct-2017
//valueXmlString.append("<rate>").append("<![CDATA[").append(rs.getDouble(10)).append("]]>").append("</rate>\r\n");
valueXmlString.append("</Detail>\r\n");
}//while end
}
//Add by Ajay on 02/05/18:START
rs.close();
rs = null;
stmt.close();
stmt = null;
//Add by Ajay on 02/05/18:END
//while end
}
valueXmlString.append("</Root>\r\n");
}
......
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