Subject | set transaction and 3.3.0 driver problem |
---|---|
Author | Gerdus van Zyl |
Post date | 2010-07-10T18:56:44Z |
I think you need to do that via the python layer's transaction parameters.
something like: (from the docs)
customTPB = TPB()
customTPB.lock_timeout = 5
# Explicitly start a transaction with the custom TPB:
con.begin(tpb=customTPB.render())
see:
http://www.firebirdsql.org/devel/python/docs/3.3.0/beyond-python-db-api.html#advanced-transaction-control
something like: (from the docs)
customTPB = TPB()
customTPB.lock_timeout = 5
# Explicitly start a transaction with the custom TPB:
con.begin(tpb=customTPB.render())
see:
http://www.firebirdsql.org/devel/python/docs/3.3.0/beyond-python-db-api.html#advanced-transaction-control