本文介绍了psycopg2如何处理TypeError:不是在格式化字符串时转换所有参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个由psycopg2
进行的简单数据库查询,但我不知道为什么它总是显示错误
,这里是代码
i have a simple database query by psycopg2but i do not know why it always show errorshere is the code
ip ="127.0.0.1"
sql="select count(*) from radacct where nasipaddress=%s"
cur.execute(sql,ip)
然后它将显示
TypeError:并非所有参数都已转换在字符串格式化期间
TypeError: not all arguments converted during string formatting
,如果我尝试这种方式
cur.execute("select count(*) from radacct where nasipaddress=%s" % ip)
it仍然无法正常工作
it is still not working
我如何以正确的方式将参数传递给psycopg2。请帮助我!
how can i pass the parameters to psycopg2 in the correct way.please help me!
推荐答案
您传递给 execute
的sql参数必须位于元组或列表中,即使其中只有一个。这在中进行了说明:
The sql arguments you pass to execute
must be in a tuple or list, even if there's only one of them. This is noted in the documentation:
所以您需要这样做:
ip ="127.0.0.1"
sql="select count(*) from radacct where nasipaddress=%s"
cur.execute(sql, (ip,))
这篇关于psycopg2如何处理TypeError:不是在格式化字符串时转换所有参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!