0
我在使用pypyodbc模塊更新數據庫時面臨挑戰。 沒有收到任何錯誤,代碼被成功執行;但SQL-Server數據庫未更新。 正在從數據庫提取數據。使用pypyodbc更新數據庫
請檢查:
connection = pypyodbc.connect('Driver={SQL SERVER};Server=ser;Database=db;uid=uname;pwd=pass')
cursor=connection.cursor()
cursor.execute("declare @today as date;set @today = convert(varchar,getdate(),101);Update dbo.Credentials_Mst Set Password='qwerty',[email protected],ModifiedBy='abcd' where Username='abc';")