cx_oracle.connect用法
时间: 2023-04-27 08:06:26 浏览: 259
cx_Oracle使用方法
4星 · 用户满意度95%
cx_oracle.connect是Python中用于连接Oracle数据库的函数。它需要传入以下参数:
1. 用户名:连接Oracle数据库的用户名
2. 密码:连接Oracle数据库的密码
3. 数据库连接字符串:Oracle数据库的连接字符串,格式为"host:port/service_name"或"host:port/sid"
例如:
```python
import cx_Oracle
# 连接Oracle数据库
conn = cx_Oracle.connect('username', 'password', 'host:port/service_name')
# 执行SQL语句
cursor = conn.cursor()
cursor.execute('SELECT * FROM table_name')
result = cursor.fetchall()
# 关闭连接
cursor.close()
conn.close()
```
阅读全文