Dynamics Axe 中的字段类型
是否可以在 Dynamics 字段中存储二进制信息?例如,我想在 Dynamics 数据库中存储 MS Word 文档。
Is it possible to store binary information in a Dynamics field? For example, I'd like to store an MS Word document inside the Dynamics database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,向表中添加一个容器字段,然后使用 BinData Class 读取文件并将数据转换为容器。有关此示例,请查看标准文档处理功能如何在表方法
DocuValue.writeDocuValue()
中将文件存储在数据库中,或者查看图像文件如何存储在CompanyImage 中
形式。Yes, add a container field to the table, then use the BinData Class to read the file and convert the data to a container. For an examples of this, look at how the standard Document handling feature stores files in the database in the table method
DocuValue.writeDocuValue()
, or look at how image files are stored in theCompanyImage
form.