python & MySQLdb(Three)
Posted kailicard
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python & MySQLdb(Three)相关的知识,希望对你有一定的参考价值。
mmp我搞了半天发现是在做字符串的转换,这个是必然报错的,但是我们用连接操作就可以了,利用MySQLhelper的get_one方法去传就可以了,自己真的菜啊看来
#方法一:
#encoding=utf8 from fengzhaung import * ih=input("输入编号") print(id(ih)) sql="select * from stu where stu_id="+ih helper=MysqlHelper(‘192.168.65.146‘,3306,‘student‘,‘root‘,‘toor‘) s=helper.get_one(sql) print(s)
#方法二
#encoding=utf8 from fengzhaung import *
ih=input("请输入编号:")
sql="select * from stu where stu_id=%s"
param=[ih]
helper=MysqlHelper(‘192.168.65.146‘,3306,‘student‘,‘root‘,‘toor‘)
s=helper.get_one(sql,param)
print(s)
以上是关于python & MySQLdb(Three)的主要内容,如果未能解决你的问题,请参考以下文章