Replies: 2 comments
-
If a fetchmany(size=X) call returns X rows, you have to do another fetchmany() call to see if there are any more rows to be returned from the DB since python-oracledb doesn't have any EOF information until all rows have been fetched. |
Beta Was this translation helpful? Give feedback.
0 replies
-
what about this then?
after fetching the last batch, i expect
(source) |
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
-
Here i'd like to detect if the currently-processed rows batch is the last one before the final call to
cursor.fetchmany
.My code:
Beta Was this translation helpful? Give feedback.
All reactions