posted 23 years ago
somewhere in your code, you are creating statements, and not closing them. This causes cursors to remain open and accumulate, until finally, the number of open cursors exceeds the maximum set by the Database. So you'll have to find all the statements in your code and make sure you call statement.close() on every one.
Jamie