以下作品:
>>> cursor.execute("select * from sqlitetable where rowid in (2,3);")
以下不是:
>>> cursor.execute("select * from sqlitetable where rowid in (?) ",[[2,3]] )
sqlite3.InterfaceError: Error binding parameter 0 - probably unsupported type.
有没有办法传递一个python列表,而不必先将它格式化成一个字符串?
不幸的是每个值都必须有自己的参数
标记(?).
由于参数列表(可能)具有任意长度,因此您必须使用字符串格式来构建正确
数量的参数
标记.幸运的是,这不是很难:
args=[2,3]
sql="select * from sqlitetable where rowid in ({seq})".format(
seq=','.join(['?']*len(args)))
cursor.execute(sql,args)
原文链接:https://www.f2er.com/sqlite/197754.html