我有一个 Java 类,它调用一个 SQL 过程来执行一些数据库操作。这是我的Java方法:
public static void buildContent(String id) throws Exception{
Connection conn = ExtractDB.getConnection();
CallableStatement cs = null;
log.debug("arguments for the procedure is= "+id);
try {
cs = conn.prepareCall("{call CMS.relix.build_rp_data(?)}");
cs.setString(1, id);
cs.execute();
if(cs!=null)
{
cs.close();
}
} catch (SQLException e) {
log.error("Exception while executing the procedure", e);
}
finally{
if(cs!=null)
{
cs.close();
}
}
}
经过几次处理后,它会在日志中打印以下错误并挂在那里(我必须手动终止进程才能停止执行):
Ora Err Msg :-1000
Ora Err Code :ORA-01000: maximum open cursors exceeded
ORA-01000: maximum open cursors exceeded
ORA-06512: at "CMS.relix", line 1700
ORA-06512: at line 1
at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208) ...
我尝试了以下解决方案:
在 catch 块中添加“ throw ”后,该进程现在没有被挂起,它在打印相同的 SQL 错误后继续执行。
catch (SQLException e) {
log.error("Exception while executing the procedure", e);
throw e;
}
我希望您能帮助理解以下几点:
- 如何在代码中添加“throw e”,让程序即使在出错后也能继续?
- 如果遇到这种情况,如何处理此错误/异常以停止处理并退出程序。