美文网首页
2024-02-03-乱记25

2024-02-03-乱记25

作者: 中年大叔 | 来源:发表于2024-02-02 23:05 被阅读0次

    每日一言:

    一个人有两个我,一个在黑暗中醒着,一个在光明中睡着。-纪伯伦

    终于把json转换成了数据存储到Mysql数据库中了。

    知识点:python连接MySQL数据库示例。

    import pymysql

    # 建立与MySQL服务器的连接

    conn = pymysql.connect(host='localhost', port=3306, user='root', password='password', database='database_name')

    cursor = conn.cursor()

    # 执行查询语句

    sql = "SELECT * FROM table_name"

    cursor.execute(sql)

    result = cursor.fetchall()

    for row in result:

        print(row)

    # 关闭连接

    cursor.close()

    conn.close()

    相关文章

      网友评论

          本文标题:2024-02-03-乱记25

          本文链接:https://www.haomeiwen.com/subject/fzwtadtx.html