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的主要内容,如果未能解决你的问题,请参考以下文章

硬核!管理mysql数据库的工具

python访问你自己的公网ip地址的代码

部分代码片段

[Python_6] Python 配置 MySQL 访问

常用python日期日志获取内容循环的代码片段

linux中怎么查看mysql数据库版本