我的sql总是出现这个错误: Error reading data from MySQL table 400 Bad Request: The browser (or proxy) sent a request that this server could not understand.
我的sql是正确的,它在控制台中工作,但在python文件中不工作。我认为错误在params中,因为代码似乎正在工作,并且就在params之后,我的打印(“完成”)没有打印:)但是我看不到它:/
这是我的代码(顺便说一句,我使用全局变量g作为我的数据库,它在我的其他函数中工作):
cursor = g.connection.cursor(dictionary=True)
requete = f""" insert into classicmodels.customers
( customerNumber,
customerName,
contactLastName,
contactFirstName,
phone,
addressLine1,
addressLine2,
city,
state,
postalCode,
country
) VALUES (%s,%s,%s, %s, %s , %s, %s, %s, %s, %s, %s)
"""
nouveau_id = self.obtenir_dernierCustomerNumber()["customerNumber"]
params = (nouveau_id, formulaire.form['nom'] + formulaire.form['prenom'],
formulaire.form['nom'], formulaire.form['prenom'],
formulaire.form['phone'], formulaire.form['adresseA'], formulaire.form['adresseB'],
formulaire.form['ville'], formulaire.form['etat'],
formulaire.form['codePostal'], formulaire.form['country'],)
print(params)
cursor.execute(requete, params)
g.connection.commit()
1条答案
按热度按时间dwbf0jvd1#
我看问题出在你的价值观之后:
应该是: