pycharm连接数据库代码
时间: 2023-10-11 13:13:26 浏览: 102
图文详解Django使用Pycharm连接MySQL数据库
这是Python使用PyCharm连接MySQL数据库的代码示例:
``` python
import pymysql
# 连接数据库,需要填写相关的数据库信息
conn = pymysql.connect(
host='localhost',
port=3306,
user='root',
password='password',
database='database'
)
# 获取游标
cursor = conn.cursor()
# 定义SQL语句
sql = 'SELECT * FROM table'
# 执行SQL语句
cursor.execute(sql)
# 获取所有结果
results = cursor.fetchall()
# 输出结果
for result in results:
print(result)
# 关闭游标和连接
cursor.close()
conn.close()
```
需要注意的是,要安装 `pymysql` 模块,可以使用以下命令安装:
```
pip install pymysql
```
阅读全文