gpt4 book ai didi

python - 我无法让 INSERT INTO tablename 等在 Python 3.8 pyodbc MySQL 中工作

转载 作者:行者123 更新时间:2023-11-29 06:26:57 25 4
gpt4 key购买 nike

我相当确定与数据库的连接已经建立。这是我的代码...

#
# *************************************************************************************************************************************
# * ADDKEYWORD processing
# *************************************************************************************************************************************
#
def addkeyword(ktyp, kword, kweight):
tbkeywordtype = str(ktyp)
tbkeyword = str(kword)
tbweighting = float(kweight)
#
tbkeywordkey = 1 # temporary work around
#
# Prepare string for inserting new tbkeyword record
#
insertString = str
insertString = "\"INSERT INTO tbkeyword (KeywordKey, KeywordType, Keyword, Weighting, Added, Updated) VALUES (%s,'%s','%s',%s,'%s','%s');\"" % (tbkeywordkey,tbkeywordtype,tbkeyword,tbweighting,formatted_date,formatted_date)
print(insertString)
#
# Insert new tbkeyword record
#
mycursor.execute(insertString)
#
# Check status code to go here
#
mydb.commit

这是结果。请注意,第一行是打印 mycursor.execute() 括号之间的字符串的结果。

“INSERT INTO tbkeyword(KeywordKey、KeywordType、Keyword、Weighting、Added、Updated)VALUES (1,'K','free',0.6,'2019-11-19 09:12:08','2019- 11-19 09:12:08');"

Exception in Tkinter callback
Traceback (most recent call last):
File "C:\Users\Tony\AppData\Local\Programs\Python\Python38\lib\tkinter\__init__.py", line 1883, in __call__
return self.func(*args)
File "C:\Users\Tony\AppData\Local\Programs\Python\Python38\MainMenuGUI.py", line 185, in <lambda>
command=lambda: addkeyword(ektyp.get(),ekword.get(),eweight.get()))
File "C:\Users\Tony\AppData\Local\Programs\Python\Python38\MainMenuGUI.py", line 103, in addkeyword
mycursor.execute(insertString)
pyodbc.ProgrammingError: ('42000', '[42000] [MySQL][ODBC 8.0(a) Driver][mysqld-8.0.18]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'"INSERT INTO tbkeyword (KeywordKey, KeywordType, Keyword, Weighting, Added, Upda\' at line 1 (1064) (SQLExecDirectW)')

我根本看不出我做错了什么。帮助!!!!

最佳答案

问题是您在查询字符串中插入了“。只需删除它们(在开头和结尾):

   insertString = str
insertString = "INSERT INTO tbkeyword (KeywordKey, KeywordType, Keyword, Weighting, Added, Updated) VALUES (%s,'%s','%s',%s,'%s','%s');" % (tbkeywordkey,tbkeywordtype,tbkeyword,tbweighting,formatted_date,formatted_date)
print(insertString)
#
# Insert new tbkeyword record
#
mycursor.execute(insertString)

但是如果您还使用准备好的语句并删除不需要的行,如下所示:

insertString = "INSERT INTO tbkeyword (KeywordKey, KeywordType, Keyword, Weighting, Added, Updated) 
VALUES (?,?,?,?,?,?);"
# print(insertString)
#
# Insert new tbkeyword record
#
mycursor.execute(insertString,(tbkeywordkey,tbkeywordtype,tbkeyword,tbweighting,formatted_date,formatted_date))

关于python - 我无法让 INSERT INTO tablename 等在 Python 3.8 pyodbc MySQL 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58930708/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com