python 连接 ORACLE数据库的问题

python 连接 ORACLE数据库的问题

网上找了半天说cx_Oracle链接ORACLE比较好。各位大侠我怎么装都装不上它。

下面是一个小例子。

import cx_Oracle

connection = cx_Oracle.connect("sid", "pwd", "hutudb")

cursor = connection.cursor()
cursor.arraysize = 15
cursor.execute("""
        select id,subject from
                (select * from hututable order by id desc)
                where rownum<=15 and id>10000""")

for id,subject in cursor.fetchall():
        print str(id)+" "+str(subject)
这个问题你最好去看模块的手册 也许你那个 connect 里面参数不对吧 或者少了
我也没用过这个
测试了一下你的代码,没有任何问题,可不可以将你遇到的错误提示贴出来?