Oracledb cursors management #349
Unanswered
Alaeddine22
asked this question in
Q&A
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
i'm running some tests in order to understand how oracledb is managing cursors.
I ran the following tests :
And i noticed some strange observations listed in the attached picture

The query i used to check the cursors:
select * FROM v$open_cursor where sid=[conn_sid] and cursor_type='OPEN';
Another question: why is the cursor not released after being closed (running cur.close())? I noticed it is effectively released only when executing a query afterwards.
Thank you in advance
Beta Was this translation helpful? Give feedback.
All reactions