PyPyODBC没有将记录插入MS-SQL服务器

时间:2017-02-22 12:39:22

标签: python sql-server pypyodbc

我是Python新手并编写了这个简单的代码,用于将数据插入SQL服务器:

import pypyodbc
connect = pypyodbc.connect('Driver={Sql Server Native Client 11.0};Server=.;Database=SAMPLE;Trusted_Connection=yes;')
cursor = connect.cursor()
print('Trying to insert!')
cursor.execute("insert into [SAMPLE].[dbo].[Register] VALUES ('behzad','razzaqi')")
print('Insert Finish!')
connect.close()

代码执行正常甚至我Insert Finish!,但是当我检查SQL服务器时,没有插入记录。发生了什么?我该如何解决这个问题?

1 个答案:

答案 0 :(得分:5)

我相信你也必须致电this.props.Email.IsValid。尝试:

connect.commit()