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

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()  #逐行获取,每次一条

  

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐