Adjust documentation to indicate what cursor.rowcount returns for PL/SQL block

executions (https://github.com/oracle/python-cx_Oracle/issues/285).
This commit is contained in:
Anthony Tuininga 2019-03-29 10:41:46 -06:00
parent 8681366f53
commit 883262da07

View File

@ -424,8 +424,10 @@ Cursor Object
.. attribute:: Cursor.rowcount .. attribute:: Cursor.rowcount
This read-only attribute specifies the number of rows that have currently This read-only attribute specifies the number of rows that have currently
been fetched from the cursor (for select statements) or that have been been fetched from the cursor (for select statements), that have been
affected by the operation (for insert, update and delete statements). affected by the operation (for insert, update, delete and merge
statements), or the number of successful executions of the statement
(for PL/SQL statements).
.. attribute:: Cursor.rowfactory .. attribute:: Cursor.rowfactory