Skip to content

Commit

Permalink
code fix for issue ibmdb#106
Browse files Browse the repository at this point in the history
  • Loading branch information
amukherjee28 committed Apr 11, 2022
1 parent 1e79716 commit b1bc055
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions ibm_db_sa/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,7 @@ class DB2Dialect(default.DefaultDialect):
supports_sane_multi_rowcount = True
supports_native_decimal = False
supports_native_boolean = False
supports_statement_cache = False
preexecute_sequences = False
supports_alter = True
supports_sequences = True
Expand Down
1 change: 1 addition & 0 deletions ibm_db_sa/ibm_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ def get_result_proxy(self):
class DB2Dialect_ibm_db(DB2Dialect):
driver = 'ibm_db_sa'
supports_unicode_statements = True
supports_statement_cache = False
supports_sane_rowcount = True
supports_sane_multi_rowcount = False
supports_native_decimal = False
Expand Down

0 comments on commit b1bc055

Please sign in to comment.