Commit d732d254 authored by ssalve's avatar ssalve

Sarita : Done changes to resolve open cursor issue 17NOV2017

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@173808 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 62066b36
......@@ -1386,6 +1386,13 @@ public class InvAcct
pstmtUpd.setString(3,tranId);
pstmtUpd.executeUpdate();
// end - amit-26-04-02
//Added by sarita on 17NOV2017 , for open cursor issue [start]
if(pstmtUpd != null)
{
pstmtUpd.close();
pstmtUpd = null;
}
//Added by sarita on 17NOV2017 , for open cursor issue [end]
}//try
catch(Exception exception)
{
......
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