是否可以使用 Delphi for win32 创建 SQL Server UDF?
我将文件存储在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要 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.