Skip to content

Commit

Permalink
0000742: "ORA-01000: maximum open cursors exceeded" during initial lo…
Browse files Browse the repository at this point in the history
…ad (RouterService.insertInitialLoadEvents)
  • Loading branch information
chenson42 committed Jul 29, 2012
1 parent a92346b commit f5824b0
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -241,6 +241,7 @@ public Integer execute(Connection con) throws SQLException {
return stmt.getUpdateCount();
} finally {
JdbcSqlTemplate.close(rs);
JdbcSqlTemplate.close(stmt);
}

}
Expand All @@ -265,6 +266,7 @@ public Integer execute(Connection con) throws SQLException {
return stmt.getUpdateCount();
} finally {
JdbcSqlTemplate.close(rs);
JdbcSqlTemplate.close(stmt);
}

}
Expand Down

0 comments on commit f5824b0

Please sign in to comment.