Sqlite3 - 使用Python代码更新表 - %s附近的语法错误

时间:2012-03-24 02:41:30

标签: python sql sqlite

这是我的Python代码 -

cursor.execute("""UPDATE tasks SET task_owner=%s,task_remaining_hours=%s,                      task_impediments=%s,task_notes=%s WHERE task_id=%s""",                      (new_task_owner,new_task_remaining_hours,new_task_impediments,
                      new_task_notes,task_id))

这是我在SQLite3管理器(Firefox扩展)中尝试的SQL语句

UPDATE tasks SET task_owner=%s,task_remaining_hours=%d,task_impediments=%s,task_notes=%s WHERE task_id=%d,("sumod",10,"none","test",1)   

我得到的错误是 -

sqlite3.OperationalError: near "%": syntax error

我尝试了很多网络搜索,包括SO,教程和自我排查,但这个错误并没有消失。究竟我在这里做错了什么。

2 个答案:

答案 0 :(得分:29)

我认为Python的SQLite实现使用?占位符,与MySQLdb的%s不同。 Review the documentation.

cursor.execute("""UPDATE tasks SET task_owner = ? ,task_remaining_hours = ?,task_impediments = ?,task_notes = ? WHERE task_id= ? """,
  (new_task_owner,new_task_remaining_hours,new_task_impediments,new_task_notes,task_id))

答案 1 :(得分:0)

也可以使用%s:

cursor.execute("UPDATE tasks SET task_owner='%s', task_remaining_hours='%s', 
task_impediments = '%s', task_notes = '%s' WHERE task_id= '%s' " % 
(new_task_owner,new_task_remaining_hours,new_task_impediments,new_task_notes,task_id))