Commit 1aaf0834 authored by mkhan's avatar mkhan

connection is not close in any where


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91188 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 9cbca5e7
...@@ -753,6 +753,13 @@ public class TaxSch extends ProcessEJB implements TaxSchLocal, TaxSchRemote ...@@ -753,6 +753,13 @@ public class TaxSch extends ProcessEJB implements TaxSchLocal, TaxSchRemote
partyNameRS = null; partyNameRS = null;
partyNamePstmt = null; partyNamePstmt = null;
// end 28/-06-2007 manoharan // end 28/-06-2007 manoharan
// added by manazir on 26/11/09 since conn was not close
if(conn != null)
{
conn.close();
conn=null;
}
// end of code
} }
catch (Exception e) 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