当前位置:Gxlcms > 数据库问题 > python中sql语句的占位符

python中sql语句的占位符

时间:2021-07-01 10:21:17 帮助过:247人阅读



TypeError: %d format: a number is required, not str"

 

MySQLdb的字符串格式化不是标准的python的字符串格式化,

应当一直使用%s用于字符串格式化

 

python中无论整数,字符串占位符都为  %s,且不需加单引号

sql="insert into myauth_perm(permname, permurl, permdemo, parentid) values(%s, %s, %s, %s)"
cur.execute(sql,[html_permname, html_permurl, html_permdemo,html_parentid])

 

python中sql语句的占位符

标签:字符串   url   number   perm   html   modules   报错信息   mysqld   使用   

人气教程排行