是否可以使用 Delphi for win32 创建 SQL Server UDF?

发布于 2024-11-07 15:21:57 字数 329 浏览 0 评论 0原文

我将文件存储在 blob 中(使用 SQl Server 文件流)。

我将它们压缩保存(使用 Zipforge Delphi 组件)。

我需要允许一些用户通过简单的查询检索文件并获取已解压缩的文件。

所以我想要一个名为 RetrieveFile 的 UDF,并以单个 ID 作为参数。此函数返回一个未压缩文件的 BLOB。

是否可以在 Delphi 中执行此操作,或者我必须使用 .NET?

I store files in blobs (using SQl Server filestream).

I stored them zipping them (with Zipforge Delphi component).

I'd need to allow some users retrieveing the files with a simple query and obtaining them already unzipped.

So I would like to have a UDF called RetrieveFile with a single ID as parameter. This function returns a BLOB that is a not zipped file.

Is it possible to do this in Delphi or I must use .NET?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

慕烟庭风 2024-11-14 15:21:57

您需要 CLR 存储过程来执行此操作,并且在纯 Delphi 中不可能创建程序集。但是您可以使用 Delphi Prism 来开发它。查看 这篇文章由 RRUZ 撰写。

You need CLR stored procedure to do this and in pure Delphi is impossible to create the assembly. However you can use Delphi Prism to develop it. Check out this article written by RRUZ.

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