标签: python oracle
是否可以执行存储在oracle clob字段中的python2文件。
我尝试过这样的事情
cur.execute("""SELECT pyfile FROM dual """)
printout = cur.fetchone()
exec str(printout[0])
我收到错误SyntaxError: invalid syntax
SyntaxError: invalid syntax
它应该以某种方式起作用吗?