使用 OLEDB 操作 Excel 文件,使用文件流而不是物理文件
早些时候,我通过 Microsoft.Jet.OLEDB.4.0 读取位于文件系统上的 excel 文件,并且工作正常,但现在我的客户告诉我,将 excel 文件作为 BLOB 列放入数据库表中,并从该列读取该文件并通过直接操作该内存字符串来隐藏一个工作簿。
请帮我解决这个问题吗?
Earlier I was reading excel file located on file system through Microsoft.Jet.OLEDB.4.0, and that was working fine, But now my client has told me that place excel file into a database table as BLOB column and read that file from that column and hide one workbook by manipulating that memory string directly.
Please help me out from this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 BLOB 内容创建一个临时文件,并在完成后替换 BLOB。
Create a temp with the BLOB contents and replace the BLOB when done.