并非在SQL语句中使用了所有参数(Python,MySQL)
我在以下Python代码上收到错误:
import mysql.connectorcnx = mysql.connector.connect(user='root', password='',
host='127.0.0.1',
database='DB')
cursor = cnx.cursor()
Name = "James"
Department = "Finance"
StartYear = 2001
CurrentPos = 2001
Link = ""
add_user = ("INSERT INTO DB.tbluser "
"(username, department, startyear, currentpos, link) "
"VALUES (%s, %s, %d, %d, %s)")
data_user = (Name, Department, StartYear, CurrentPos, Link)
cursor.execute(add_user, data_user)
cnx.commit()
cursor.close()
cnx.close()
错误消息是
mysql.connector.errors.ProgrammingError: Not all parameters were used in the SQL statement
你知道为什么吗
回答:
参数标记%s
不是%d
。
add_user = """INSERT INTO DB.tbluser (username, department, startyear, currentpos, link)
VALUES (%s, %s, %s, %s, %s)"""
请注意,所使用的参数标记mysql.connector
可能看起来与%s
Python字符串格式中使用的参数标记相同,但关系只是巧合。一些数据库适配器喜欢oursql
和sqlite3
使用?
的参数标记代替%s
。
以上是 并非在SQL语句中使用了所有参数(Python,MySQL) 的全部内容, 来源链接: utcz.com/qa/420097.html