1

我要求在 Azure PostgreSQL 中托管的表中保存大量文件(例如图像、.csv)。文件保存为二进制数据类型。是否可以通过 SQL 查询将它们直接提取到本地文件系统?我使用 python 作为我的编程语言,感谢任何指南或代码示例,谢谢!

4

1 回答 1

0

如果您只想将二进制文件从 SQL 提取到本地并保存为文件,请尝试以下代码:

import psycopg2
import os

connstr = "<conn string>"
rootPath = "d:/"

def saveBinaryToFile(sqlRowData):
    destPath = rootPath + str(sqlRowData[1]) 

    if(os.path.isdir(destPath)):
        destPath +='_2'
        os.mkdir(destPath)
    else:
        os.mkdir(destPath)
        
    
    newfile = open(destPath +'/' + sqlRowData[0]+".jpg", "wb");
    newfile.write(sqlRowData[2])
    newfile.close

conn = psycopg2.connect(connstr)
cur = conn.cursor()
sql = 'select * from images'
cur.execute(sql)
rows = cur.fetchall()
print(sql)
print('result:' + str(rows))
for i in range(len(rows)):
    saveBinaryToFile(rows[i])

conn.close()

这是我的示例 SQL 表: 在此处输入图像描述

结果:

在此处输入图像描述

在此处输入图像描述

于 2020-12-03T01:35:45.633 回答