python 连接Mysql数据库
时间: 2024-09-30 16:14:14 浏览: 36
python,mysql连接.pdf
在Python中连接MySQL数据库通常使用`mysql-connector-python`库,这是一个官方推荐的Python MySQL驱动程序。以下是简单的步骤:
1. **安装库**:
首先,你需要通过pip安装这个库:
```
pip install mysql-connector-python
```
2. **连接示例**:
```python
import mysql.connector
# 创建连接
cnx = mysql.connector.connect(
host="localhost", # 数据库主机地址,如果是远程则填实际地址
user="username", # 用户名
password="password", # 密码
database="database_name" # 数据库名称
)
# 检查连接是否成功
if cnx.is_connected():
print("Connected to MySQL server")
# 执行SQL查询
cursor = cnx.cursor()
query = "SELECT * FROM table_name"
cursor.execute(query)
# 获取结果
for (column1, column2) in cursor:
print(f"{column1}, {column2}")
# 关闭连接
cursor.close()
cnx.close()
```
3. **错误处理**:
在实际应用中,记得加入异常处理,例如检查连接失败、SQL执行错误等。
阅读全文