我正在尝试使用 python 读取存储过程的内容/代码。
我使用 cx_Oracle 函数建立与 oracle 数据库的连接。
这是代码
import cx_Oracle as co
import pandas as pd
dsn_tsn = co.makedsn(ip,port,SID)
db=co.connect(username,password,dsn_tsn)
cursor = db.cursor()
cursor.callproc(procedure_name,['argument']) # will be me result of the procedure.
但是,我正在尝试阅读程序本身的代码。有什么功能可以做到这一点吗?