mysql和python连接
时间: 2023-07-25 10:15:29 浏览: 72
mysql-connect-python
可以使用Python中的MySQL驱动程序来连接MySQL数据库。其中,常用的MySQL驱动程序有三种:MySQLdb、PyMySQL和Connector/Python。其中,Connector/Python是官方推荐的一种驱动程序,因此我们可以选择使用Connector/Python来连接MySQL数据库。
以下是使用Connector/Python连接MySQL数据库的步骤:
1. 安装Connector/Python模块。
可以使用pip命令来安装Connector/Python模块,命令如下:
```
pip install mysql-connector-python
```
2. 导入mysql.connector模块。
```
import mysql.connector
```
3. 建立数据库连接。
```
cnx = mysql.connector.connect(user='用户名', password='密码', host='主机名', database='数据库名')
```
其中,用户名、密码、主机名和数据库名需要根据实际情况进行填写。
4. 创建游标对象。
```
cursor = cnx.cursor()
```
5. 执行SQL语句。
```
sql = "SELECT * FROM 表名"
cursor.execute(sql)
```
6. 获取执行结果。
```
result = cursor.fetchall()
```
7. 关闭游标和数据库连接。
```
cursor.close()
cnx.close()
```
以上是使用Python连接MySQL数据库的基本步骤。在实际应用中,还需要根据需要进行相应的异常处理等操作。
阅读全文