我正在用Oracle的托管驱动程序替换旧的非托管ODP驱动程序,我发现即使明确回滚或未提交,我的事务也会提交。
max
在这种情况下,我的插入在代码停止运行后提交。
我错过了什么?
答案 0 :(得分:-2)
尝试在创建后为命令指定打开的transcation -
from datetime import *
[datetime.today()+timedelta(days=x) for x in range(0,7) if (datetime.today()+timedelta(days=x)).weekday() % 7 == 0]
(0 at the end is for next monday, returns current date when run on monday)