我试图从oracle数据库中获取某个值,并使用oracle数据库查询的值打印一个字符串。
con=cx_Oracle.connect('username/pword')
cur=con.cursor()
fList=()
obj=cur.execute('''select sequence from genes where key=54321''')
cur.close()
con.close()
print str(obj)
我得到了这个输出:
<cx_Oracle.Cursor on <cx_Oracle.Connection to user hendrik@local>>
但是我想获得这个唯一键/行的序列值。