# 导入pyMysqLimport pyMysqL# 连接服务端conn = pyMysqL.connect( host = ‘127.0.0.1‘,# MysqL地址 port = 3306,# MysqL端口 user = ‘root‘,# MysqL用户名 password = ‘123‘,#MysqL密码 db = ‘test‘,# 选库 charset = ‘utf8‘,# 设置字符编码 autocommit = True # 设置增删改后自动提交)# 创建游标,并设置返回值为字典cursor = conn.cursor(cursor=pyMysqL.cursors.DictCursor)#用户输入user_name = input(‘user_name:‘).strip()pwd = input(‘pwd:‘).strip()# 拼接SQL语句sql = ‘select * from user_info where name=%s and pwd=%s‘# 执行SQL语句cursor.execute(sql,(user_name,pwd))# 接收返回值data = cursor.fetchone()# 判断返回值if data: print(‘登录成功‘)else: print(‘登录失败‘)总结
以上是内存溢出为你收集整理的在python中使用pymysql连接数据库全部内容,希望文章能够帮你解决在python中使用pymysql连接数据库所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)