Python连接Oracle
时间: 2023-07-08 09:47:42 浏览: 131
Python连接Oracle驱动
5星 · 资源好评率100%
要在Python中连接Oracle数据库,你需要安装Oracle的驱动程序,这个驱动程序可以通过Oracle官方网站下载。你需要根据自己的操作系统和Python版本选择对应的驱动程序进行安装。
安装完驱动程序之后,你可以使用Python中的`cx_Oracle`模块来连接Oracle数据库。下面是一个简单的示例代码:
```python
import cx_Oracle
# 连接Oracle数据库
conn = cx_Oracle.connect('username/password@host:port/service_name')
# 创建游标对象
cursor = conn.cursor()
# 执行SQL语句
cursor.execute('SELECT * FROM table_name')
# 获取查询结果
result = cursor.fetchall()
# 关闭游标和连接
cursor.close()
conn.close()
```
在连接字符串中,你需要替换`username`、`password`、`host`、`port`和`service_name`为你自己的数据库信息。
然后你就可以执行SQL语句并获取查询结果了。记得在使用完游标和连接之后关闭它们。
阅读全文