阅读量:0
Python可以使用cx_Oracle库来读取Oracle数据库。首先需要安装cx_Oracle库,可以使用以下命令进行安装:
pip install cx_Oracle
安装完成后,可以使用以下代码示例来连接到Oracle数据库并读取数据:
import cx_Oracle # 创建连接对象 dsn = cx_Oracle.makedsn('hostname', 'port', service_name='service_name') connection = cx_Oracle.connect(user='username', password='password', dsn=dsn) # 创建游标对象 cursor = connection.cursor() # 执行SQL查询 cursor.execute('SELECT * FROM table_name') # 获取查询结果 rows = cursor.fetchall() for row in rows: print(row) # 关闭游标和连接 cursor.close() connection.close()
在代码示例中,需要将hostname
、port
、service_name
、username
、password
和table_name
替换为实际的值。执行代码后,将会输出指定表中的所有数据。