在以下代码片段中,
try
{
Statement stmt = conect.getConnection();
stmt.executeUpdate(query);
}
catch(SQLException e)
{
//handle exception
}
finally
{
try{ stmt.close(); }
catch(SQLException ignore){}
}
当执行 stmt.close(); 时 finally 块中发生异常时会发生什么。有没有更好的方法来处理这类问题?