python 2.7.6 读取mysql 用哪个
时间: 2024-05-07 10:20:42 浏览: 96
Python使用pymysql从MySQL数据库中读出数据的方法
可以使用Python的mysql-connector模块来连接和操作MySQL数据库。在Python 2.7.6中,可以使用以下命令来安装mysql-connector模块:
```
pip install mysql-connector
```
安装完毕后,可以在Python代码中使用以下语句导入mysql-connector模块:
```python
import mysql.connector
```
接下来,你可以使用mysql-connector模块中提供的类和方法来连接MySQL数据库并执行查询等操作。以下是一个示例代码,假设MySQL数据库的用户名为"root",密码为"password",数据库名为"mydatabase":
```python
import mysql.connector
# 连接MySQL数据库
mydb = mysql.connector.connect(
host="localhost",
user="root",
password="password",
database="mydatabase"
)
# 创建游标对象
mycursor = mydb.cursor()
# 执行查询
mycursor.execute("SELECT * FROM customers")
# 获取查询结果
myresult = mycursor.fetchall()
# 输出查询结果
for x in myresult:
print(x)
```
这个示例代码连接了MySQL数据库,执行了一个简单的SELECT查询,并输出了查询结果。你可以根据具体需求修改代码中的查询语句和输出方式。
阅读全文