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

cx_Oracle 连接数据库脚本

时间:2018-05-24 19:30:32      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:hone   connect   数据   ast   tab   span   pre   date   style   

import cx_Oracle as oracle
db = oracle.connect(blsdm/BLS_admin01@blsprod01.c2dlljmccmd3.ap-southeast-1.rds.amazonaws.com:1521/orcl)
cursor = db.cursor()
cursor.execute(select sysdate from dual)
data = cursor.fetchone()
print(Database time:%s % data)
cursor.close()
db.close()

 

cx_Oracle 连接数据库脚本

标签:hone   connect   数据   ast   tab   span   pre   date   style   

原文地址:https://www.cnblogs.com/xyg-zyx/p/9084482.html

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