python如何保存从oracle数据库中读取的BLOB文件

import cx_Oracle

con = cx_Oracle.connect(‘username’, ‘password’, ‘dsn’)

blob_sql = "select column_name from table where clause"

cursor = con.cursor()

cursor.execute(blob_sql)

result = cursor.fetchall()

file = open('file_name', "wb")

file.write(result[0][0].read()) #可以print查看result的内容,根据实际情况read

file.close()

如果觉得本文有帮助,请点个赞吧,如果喜欢我的文章,请点击关注,谢谢!!!

你可能感兴趣的:(python如何保存从oracle数据库中读取的BLOB文件)