我正在尝试使用sqlite3的execute函数来清理得到的字符串。但是,由于我无法弄清楚如何多次使用元组中的值,因此我无法这样做。
我能做的就是这个
cursor.execute("""
select *
from rides r
where r.cno = c.cno
and (r.src like '%{0}%'
or r.dst like '%{0}%'
or e.lcode like '%{0}%'
and (r.src like '%{1}%'
or l3.address like '%{1}%')
and (r.src like '%{2}%'
or l1.address like '%{2}%')
;
""".format(keywords[0], keywords[1], keywords[2]))
但是,我了解到它是开放式的,可以直接抑制输入,因为在这里直接使用了输入。有没有一种方法可以在执行函数的末尾多次使用元组?
答案 0 :(得分:1)
sqlite3将其卫生设施放在文档的中心位置。使用命名的占位符样式。
https://docs.python.org/3/library/sqlite3.html#sqlite3.Cursor.execute
# This is the qmark style:
cur.execute("insert into people values (?, ?)", (who, age))
# And this is the named style:
cur.execute("select * from people where name_last=:who and age=:age", {"who": who, "age": age})
上一篇文章的答案也可以帮助您直观地看到此修复程序: https://stackoverflow.com/a/12184247/10553976