码迷,mamicode.com
首页 > 数据库 > 详细

python & MySQLdb(Three)

时间:2018-11-03 19:11:51      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:help   字符   利用   coding   输入   one   自己   ack   code   

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)

标签:help   字符   利用   coding   输入   one   自己   ack   code   

原文地址:https://www.cnblogs.com/kk328/p/9901633.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!