使用 mssql blob 文件保存 doc 文件的版本

发布于 2024-12-17 18:05:28 字数 208 浏览 0 评论 0原文

我们可以假设用户正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清浅ˋ旧时光 2024-12-24 18:05:28
  1. 将 blob 复制到临时文件:
  2. C:\Documents and Settings\\Local Settings\Temp\2011112_1115112.doc

    Windows 希望您为此用户存储临时文件的任何位置。

  3. 在该文件上启动 WinWord,
  4. 等待程序完成。
  5. 完成后,将其复制回来。

对于多用户情况,您需要独占访问权限。 WinWord 通常会在您共享文件时发现这一点。但在这种情况下,您必须模拟它,也许使用表行上的一个字段来保留/释放文档以进行读/写访问。

  1. Copy the blob out to a temp file:
  2. C:\Documents and Settings\\Local Settings\Temp\2011112_1115112.doc

    or

    wherever windows wants you to store temp files for this user.

  3. Launch WinWord on that file,
  4. waiting on the program to finish.
  5. When they're done, copy it back.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文