安装配置
1.下载oracle客户端(客户端官方下载,安装方式选管理员方式),配置 "本地网络服务配置名"。 服务名不知道的,服务器端可以用sql语句查询。
oracle客户端下载网址:http://www.oracle.com/technetwork/cn/database/enterprise-edition/downloads/index.html
客户端安装好即可,无需配置.
2.拷贝客户端下的三个dll(oci.dll,oraocci11.dll和oraociei11.dll)到python目录下 lib->site-packages
3.安装python模块
pip install cx_Oracle
代码如下:
import cx_Oracle
username=""
userpwd=""
host=""
port=1521
dbname=""
dsn=cx_Oracle.makedsn(host, port, dbname)
connection=cx_Oracle.connect(username, userpwd, dsn)
cursor = connection.cursor()
sql = "select * from DT_BASE_DTLS"
cursor.execute(sql)
result = cursor.fetchall()
count = cursor.rowcount
print ("=====================" )
print ("Total:", count)
print ("=====================")
for row in result:
print (row)
cursor.close()
connection.close()