ieda怎么连接数据库
时间: 2024-06-12 17:10:29 浏览: 138
IDEA 连接数据库的实现方法
5星 · 资源好评率100%
连接数据库需要以下步骤:
1. 安装数据库驱动程序,如 MySQL Connector/Python。
2. 导入驱动程序。
3. 使用驱动程序提供的 connect() 方法连接到数据库。
4. 创建游标对象。
5. 使用游标对象执行 SQL 查询或命令。
6. 提交更改(如果有)。
7. 关闭游标对象和数据库连接。
以下是一个连接 MySQL 数据库的示例代码:
```python
import mysql.connector
# 连接到数据库
cnx = mysql.connector.connect(user='username', password='password',
host='localhost',
database='database_name')
# 创建游标对象
cursor = cnx.cursor()
# 执行 SQL 查询
query = ("SELECT first_name, last_name FROM employees "
"WHERE hire_date BETWEEN %s AND %s")
hire_start = datetime.date(1999, 1, 1)
hire_end = datetime.date(1999, 12, 31)
cursor.execute(query, (hire_start, hire_end))
# 处理查询结果
for (first_name, last_name) in cursor:
print("{} {}".format(first_name, last_name))
# 提交更改
cnx.commit()
# 关闭游标对象和数据库连接
cursor.close()
cnx.close()
```
阅读全文