Question: how do I set ibm_db.SQL_ATTR_TXN_ISOLATION with ibm_db_dbi?
j-bennet opened this issue · 2 comments
j-bennet commented
In IBM org, I see examples like this one:
conn = dbi.connect()
conn.set_option({ dbi.SQL_ATTR_TXN_ISOLATION: dbi.SQL_TXN_NO_COMMIT })
But the current ibm_db_dbi
does not have SQL_TXN_NO_COMMIT
or any other isolation level constants defined.
What's the right way to do that?
Earammak commented