python连接数据库

来源:互联网 发布:饮料铺货软件 编辑:程序博客网 时间:2024/06/05 17:41

1. 首先安装mysql

2. 安装mysql-python  (pip install mysql-python )

3. 然后需要安装mysql-connector-python (pip install mysql-connector-python)

最后 引入包 import mysqldb

 

0 0