我相当确定与数据库的连接已经建立。这是我的代码...
#
# *************************************************************************************************************************************
# * 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)')
我根本看不出我做错了什么。帮助!!!!