テーブルの名前とテーブルに挿入する情報をパラメーターとして渡そうとしています。私が思いついたクエリは以下のとおりです。
sql = """INSERT INTO `%s` (title,link,description) VALUES(%%s,%%s,%%s)""" % (feed,title_xml,link_xml,description_xml)
cursor.execute(sql)
ただし、次のエラーが発生します。
Traceback (most recent call last):
File "slicer_1.py", line 41, in <module>
sql = """INSERT INTO `%s` (title,link,description) VALUES(%%s,%%s,%%s)""" %(feed,title_xml,link_xml,description_xml)
TypeError: not all arguments converted during string formatting
ここで何が問題なのですか?