使用以下 SQL,我在 Exact Online 中获得了文档列表和小缩略图:
select document_account_name
|| document_references_yourref
|| year(document_date) || '-' || month(document_date) || '-' || day(document_date)
|| '.pdf'
pdffilename
, binarydata
from exactonlinexml..documentattachments
where document_documenttype_number_attr = 20
and lower(name) like '%pdf'
当我尝试ExactOnlineXML..Documents
使用 Invantive Control 导出文档时,我得到一个电子表格或文本文件,其中包含文件名和执行时的内容:
local export results as "c:\export\dump.csv" format csv
但是,我想转储实际的文件内容。有没有办法这样做?