Python 连接 MySQL 数据库

1、使用 pip 安装 mysql 包

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pymysql

2、导入 pymysql 包

import pymysql

3、连接 mysql 数据库

# 连接Mysql
db = pymysql.connect(host="127.0.0.1",  # 主机地址
                     user="root",       # 用户名
                     password="root",   # 密码
                     port=3306,         # 端口
                     database="mysql",  # 数据库
                     charset='utf8'     # 字符集
                     )
# 创建游标
cursor = db.cursor()

4、写 sql 语句,并执行

# sql语句
sql = "SELECT Host FROM user"
try:
    # 执行sql语句
    cursor.execute(sql)
    # 获取所有记录列表  元组类型
    results = cursor.fetchall()
    for i in results:
        print(i)
except:
    print('连接出错')

5、运行结果

Python 连接 MySQL 数据库_第1张图片

6、整体预览

Python 连接 MySQL 数据库_第2张图片 

 

你可能感兴趣的:(Python,pip,MySql,python,mysql)