MySQL python连接器代码中止而没有错误(MySQL文档中的代码)

时间:2018-08-11 17:05:16

标签: python mysql sql mysql-python

我试图使用MySQL文档中给出的python连接器代码,并在已经创建的小型数据库上对其进行测试,但是该数据库中止了。该代码仅应连接到数据库并添加新的电子邮件地址。

import mysql.connector
from mysql.connector import errorcode


cnx = mysql.connector.connect(user='root', password='pwd', host='localhost', database='db')

cursor = cnx.cursor()  

add_email = ("INSERT INTO employee(MID, Email) VALUES (%s,%s)")
email_details = (NULL, "a@a.de")

cursor.execute(add_email, email_details)

cnx.commit()
input("data entered successfully")
cnx.close()

通过设置断点,我发现问题可能出在cursor.execute()语句中。 (由于MID是自动递增,因此我将Null用作第一个%s

1 个答案:

答案 0 :(得分:0)

要解决此问题,NULL(用于自动递增的“ MID”)需要替换为None