#coding=utf-8
import os
#oracle库位置;解决32/64位版本不一至
os.environ['path'] = r'C:\Program Files\oracle\instantclient_12_1;' + os.environ['path']
#oracle编码;解决乱码
os.environ['NLS_LANG'] = 'SIMPLIFIED CHINESE_CHINA.UTF8'
import cx_Oracle
tns=cx_Oracle.makedsn('192.168.1.111',1521,'cs')
conn=cx_Oracle.connect('cs','cs',tns)
# 使用cursor()方法获取操作游标
#cursor = conn.cursor()
#使用execute方法执行SQL语句
#result=cursor.execute('Select * from t_kk')
#使用fetchone()方法获取一条数据
#data=cursor.fetchone()
#获取所有数据
#all_data=cursor.fetchall()
#获取部分数据,8条
#many_data=cursor.fetchmany(8)
cursor = conn.cursor()
cursor.execute("Select * from t_yyry where bh='01'")
print (cursor.fetchone())
conn.close()