gpt4 book ai didi

python - 使用python从Oracle到文本文件的Blob数据

转载 作者:行者123 更新时间:2023-12-05 09:15:47 26 4
gpt4 key购买 nike

我一直在尝试使用 Python 将 blob 数据从 oracle 获取到文本文件中。我在任何其他链接上都找不到答案。

下面是我的代码:

sql_string = """select 
event_id
,blob_length
,blob field
from table"""

cur.execute(sql_string)
path = "P:/Folders/"

for row in cur:
filename = path + "notes_" + str(row[0]) + "_" + str(row[1]) + ".txt"
f = codecs.open(filename, encoding='utf-8', mode='wb+')
f.write(row[2])
f.close()

我得到以下错误

TypeError: utf_8_encode() argument 1 must be str, not cx_Oracle.LOB

我尝试了其他几种方法,但问题是即使是我见过的其他方法也只能处理字符串而不是 blob。

最佳答案

您必须使用cx_oracle.LOB.read() 方法来获取LOB 对象的内容:

f.write(row[2].read())

关于python - 使用python从Oracle到文本文件的Blob数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51868112/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com