码迷,mamicode.com
首页 > 数据库 > 详细

oracle python

时间:2014-11-13 20:57:37      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:ar   os   sp   for   on   bs   line   python   nbsp   

#!/usr/bin/python

import csv

import cx_Oracle

tns_name = cx_Oracle.makedsn(‘192.168.1.230‘,‘1521‘,‘hfpboc‘)

db = cx_Oracle.connect(‘hfpboc‘,‘hfpboc‘,tns_name)

cursor = db.cursor()

f = open("cardacc.csv","w")

writer = csv.writer(f,lineterminator="\n",quoting=csv.QUOTE_NONNUMERIC)

r = cursor.execute("SELECT * FROM t_inf_card_act")

for row in cursor:

    writer.writerow(row)

f.close()


oracle python

标签:ar   os   sp   for   on   bs   line   python   nbsp   

原文地址:http://my.oschina.net/u/2252538/blog/344121

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!