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

python通过cx_oracle操作数据库过程简单记录

时间:2019-03-12 10:39:52      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:word   height   pass   db2   版本   nbsp   use   select   close   

1、环境配置

  环境配置过程中,需要关注软件版本是否一致,主要包括:oracle客户端版本、cx_oracle版本、python版本;

2、操作记录

  (1)验证环境是否正常;(无报错即为正常)

  import cx_Oracle

  (2)创建数据库连接,方式大致三种;

  db1=cx_Oracle.connect(‘user/password@host/orcl‘)

  db2=cx_Oracle.connect(‘user‘,‘password‘,‘host/orcl‘)

  tnsname=cx_Oracle.makedsn(‘host‘,1521,‘orcl‘)

  db3=cx_Oracle.connect(‘user‘,‘password‘,tnsname)

  (3)关闭数据库;

  db.close()

  (4)查询

  cr=db.cursor()  #创建游标

  cr.execute ("SELECT * FROM  pub_sysinit WHERE INITNAME LIKE ‘%消耗%‘")  #sql

  cr.fetchall()  #获取全部

  cr.fetchone()  #逐行获取,每次一条

  

python通过cx_oracle操作数据库过程简单记录

标签:word   height   pass   db2   版本   nbsp   use   select   close   

原文地址:https://www.cnblogs.com/braveheart-zs/p/10474514.html

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