linux服务器中怎么配置pymysql
时间: 2024-04-24 17:23:33 浏览: 48
若要在Linux服务器中配置pymysql,你需要在Python代码中指定MySQL数据库的连接参数。以下是一个简单的示例代码,展示了如何使用pymysql连接到MySQL数据库:
```python
import pymysql
# 连接数据库
conn = pymysql.connect(
host='localhost', # 数据库主机地址
port=3306, # 数据库端口号
user='username', # 数据库用户名
password='password', # 数据库密码
database='dbname' # 数据库名称
)
# 创建游标对象
cursor = conn.cursor()
# 执行SQL查询
sql = "SELECT * FROM table_name"
cursor.execute(sql)
# 获取查询结果
results = cursor.fetchall()
for row in results:
# 处理每行数据
print(row)
# 关闭游标和连接
cursor.close()
conn.close()
```
在上面的示例中,你需要将`host`、`port`、`user`、`password`和`database`参数替换为你的MySQL数据库的实际连接参数。然后,你可以使用`cursor.execute()`方法执行SQL查询,并使用`cursor.fetchall()`方法获取查询结果。
记住,这只是一个简单的示例,你可以根据自己的需求进行修改和扩展。
阅读全文