Commit 60c20519 authored by ssurve's avatar ssurve

Prepared statement closed in if (cnt > 0) update query block


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96168 ce508802-f39f-4f6c-b175-0d175dae99d5
parent ad583e88
......@@ -121,6 +121,11 @@ public class DistIssDelWizPostSave extends ValidatorEJB implements DistIssDelWiz
pstmt.setString(2, chgTerm);
pstmt.setString(3, tranId);
cnt = pstmt.executeUpdate();
if(pstmt != null){
pstmt.close();
pstmt = null;
}
}
}
......
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