当前位置:天才代写 > tutorial > Python教程 > Python连接Oracle

Python连接Oracle

2018-05-17 08:00 星期四 所属: Python教程 浏览:358

python 3.4.3
cx_Oracle“` python

!/usr/bin/env python

import time
start = time.clock()

import cx_Oracle
tns = cx_Oracle.makedsn(‘127.0.0.1’, ‘1534’, ‘dsn’)
db = cx_Oracle.connect(‘username’, ‘password’, tns)
def sqlSelect(sql, db):
cur=db.cursor()
cur.execute(sql)
result=cur.fetchall()
cur.close()
return result

sql_1 = ” ”
sql_2 = ” ”
sql_3 = ” “

sql_list = [sql_1, sql_2, sql_3] for sql in sql_list:
result = sqlSelect(sql, db)
print(result[0][0])

end = time.clock()
print(“\nRunning time: %f s” % (end – start))
“`

标签:python

 

    关键字:

天才代写-代写联系方式