Python访问MySQL
Posted guguda
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python访问MySQL相关的知识,希望对你有一定的参考价值。
Python访问MySQL的步骤
-
创建connection连接,连接数据库
-
获取cursor游标对象
-
执行SQL语句
-
关闭cursor游标对象
-
关闭connection连接
import pymysql user = input("username:") pwd = input("password:") conn = pymysql.connect(host="127.0.0.1", user="root", password="root123", database="homework") sql = "select * from info where user=%s and password=%s;" print(sql) cur = conn.cursor() cur.execute(sql, (user, pwd)) print(cur.fetchone())
以上是关于Python访问MySQL的主要内容,如果未能解决你的问题,请参考以下文章