pymssql - SELECT有效但UPDATE没有

时间:2017-10-12 06:11:46

标签: pymssql

enter image description here

import pymssql
import decimal

CONN = pymssql.connect(server='1233123123', user='s123', password='sa1231231', database='DBforTEST')
CURSOR = CONN.cursor()
"""it is good code. here is no problem"""
CURSOR.execute("SELECT ttt from test where w=2")
ROW = CURSOR.fetchone()
tmp = list()
tmp.append(ROW)
if ROW is None:
    print("table has nothing")
else:
    while ROW:
        ROW = CURSOR.fetchone()
        tmp.append(ROW)
print(tmp)
"""it works!"""

CURSOR.execute("""
                UPDATE test 
                SET 
                w = 16
                where ttt = 1
                """)
"it doesnt works"

我正在使用python 3.5和pymssql。

在我的代码中,SELECT状态有效,所以我可以保证连接完美 但是UPDATE状态在Python中不起作用 相同的代码在SSMS中有效。

有什么问题?
我猜SELECT状态仅用于读取,因此DB可以提供数据,但UPDATE正在修改数据库,因此DB会阻止它。

我该如何解决?

1 个答案:

答案 0 :(得分:4)

CONN.commit() 

如果未设置自动提交,则必须自行提交。