blob: d5a5ebad56f96edebe3991578d407724cf34551c [file] [log] [blame]
<html>
<body>
Reports any JDBC resource which is not safely closed in a <b>finally</b> block. Such resources may
be inadvertently leaked if an exception is thrown before the resource is closed. JDBC resources reported
by this inspection include <b>java.sql.Connection</b>,
<b>java.sql.Statement</b>,
<b>java.sql.PreparedStatement</b>,
<b>java.sql.CallableStatement</b>,
and <b>java.sql.ResultSet</b>.
<!-- tooltip end -->
<p>
Use the checkbox below to specify if a JDBC resource is allowed to be opened inside a try
block. This style is less desirable because it is more verbose than opening a resource
in front of a try block.
<p>
</body>
</html>