We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e39a6a6 commit 7d7d80cCopy full SHA for 7d7d80c
1 file changed
sqlalchemy_iris/base.py
@@ -887,14 +887,6 @@ def create_cursor(self):
887
cursor = self._dbapi_connection.cursor()
888
return cursor
889
890
- @util.non_memoized_property
891
- def rowcount(self) -> int:
892
- print("_rowcount", self._rowcount, self.cursor._closed, self.cursor.rowcount)
893
- if self._rowcount is not None:
894
- return self._rowcount
895
- else:
896
- return self.cursor.rowcount
897
-
898
899
colspecs = {
900
sqltypes.Boolean: IRISBoolean,
0 commit comments