This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Hi, I have webapplication in which im using multithreading for concurrent database access. After a while I'm getting the error ORA-01000 Maximum open cursors exceeded. When I remove mutithreading from my code everything works fine. I am currently using version 3.1.1891.14711. Is there a way to get the cursors closed, when they are not needed anymore? |
|
|
Dispose each unit of work when you are finished with it. This closes the connection and therefore all open cursors. |
|