我在批量入库的时候 为什么每次插入数据到298的时候就出现这个错误,希望大牛们帮帮我。在这里我对提交方式做了处理的。增删查 都是通用的这个方法  删除 查询正常运行
private ResultSet executeQurey(String sql) {
ResultSet rs = null;
if (!stringValidate(sql)) {
return rs;
} try {
if ("insert".equals(sql.substring(0, 6).toLowerCase())) {
this.connection.setAutoCommit(false);
}
Statement st = this.connection.createStatement();
boolean flag = st.execute(sql);
if("insert".equals(sql.substring(0, 6).toLowerCase())){
this.connection.commit();
}
if (flag) {
rs = st.getResultSet();
}
} catch (SQLException e) {
e.printStackTrace();
}
return rs;
}java.sql.SQLException: ORA-00604: 递归 SQL 级别 1 出现错误
ORA-01000: 超出打开游标的最大数
ORA-00604: 递归 SQL 级别 1 出现错误
ORA-01000: 超出打开游标的最大数
ORA-01000: 超出打开游标的最大数