我试图使用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
)
答案 0 :(得分:0)
要解决此问题,NULL
(用于自动递增的“ MID”)需要替换为None
。