cursor.execute("INSERT INTO pattent VALUES ('%s','%s','%s','%s','%s','%s')" %(PattentNumber,PattentName,PattentInventors,PattentCompany,PattentFiledtime,PattentAbstract))
sqlite3.OperationalError: near "s": syntax error
以上是我的 INSERT 句子。它适用于其他情况,但它说sqlite3.OperationalError: near "s": syntax error
我使用 Python,所有的 VALUES 都是文本。磨损在哪里?
谢谢!