美文网首页
用cx_Oracle链接oracle

用cx_Oracle链接oracle

作者: 走码人 | 来源:发表于2021-03-23 18:04 被阅读0次

1- 安装 依赖cx_Oracle

python -m pip install cx_Oracle

2-调用代码

直接上代码

import cx_Oracle
##
if __name__ == '__main__':
    conn=cx_Oracle.connect('账号/密码@ip地址:1521/数据库实例')    #连接数据库
    c=conn.cursor()    #获取cursor
    x=c.execute('select * from sys_user')          #使用cursor进行各种操作
    rows=x.fetchall()
    total=int(c.rowcount) #总行数
    #查询参数表
    for row in rows:
        print(row)

相关文章

网友评论

      本文标题:用cx_Oracle链接oracle

      本文链接:https://www.haomeiwen.com/subject/yuofhltx.html