使用 mssql blob 文件保存 doc 文件的版本
我们可以假设用户正在使用 Ms Word 文件。
用户选择文件后,软件需要存储它。 这很简单,使用 Delphi blob 和 MsSql 图像。
现在假设用户想要编辑文件, 您能否建议一个简单的解决方案,即在 Ms Word 中打开文件,允许编辑,然后保存对图像的更改?
如果能保留旧版本就更好了,比如svn。
您可以建议什么组件吗?
we can assume the user is working with Ms Word files.
After the user chooses a file, the software needs to store it.
That is easy, with Delphi blob and MsSql image.
Now lets say the user wants to edit the file,
could you suggest a simple solution, that will open the file in Ms Word, allow edit, and then save the changes to the image?
It would be better if old version could be kept, like svn.
Any component that you could suggest?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C:\Documents and Settings\\Local Settings\Temp\2011112_1115112.doc
或
Windows 希望您为此用户存储临时文件的任何位置。
对于多用户情况,您需要独占访问权限。 WinWord 通常会在您共享文件时发现这一点。但在这种情况下,您必须模拟它,也许使用表行上的一个字段来保留/释放文档以进行读/写访问。
C:\Documents and Settings\\Local Settings\Temp\2011112_1115112.doc
or
wherever windows wants you to store temp files for this user.
For multi-user situations, you'll need exclusive access. WinWord usually figures that out when you're sharing files. But in this case, you'll have to simulate it, perhaps with a field on the table row to reserve/release the document for read/write access.