为 SQL Server 二进制数据中存储的图像寻找 CKFinder 连接器

发布于 2024-11-27 20:55:56 字数 101 浏览 1 评论 0原文

我正在寻找 CKFinder 的连接器,使其能够使用存储在 SQL Server 数据库中的图像作为二进制数据。谷歌已经出现了很多,我想知道是否可能做了类似的事情并且可以向我推荐一些代码?

I'm looking for a connector for CKFinder that will enable it to use images stored in a SQL Server database as binary data. Google has turned up much and I was wondering if perhaps done anything like this and can refer me to some code?

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

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

发布评论

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

评论(2

走野 2024-12-04 20:55:57

如果你正在寻找一个官方的,那么没有,而且看起来也不会有。我为此创建了trac 票证,但被拒绝了。

他们的观点是正确的,因为编写通用连接器很复杂,因为后端可能是 MySQL、MSSQL、PostgreSQL、Oracle 或在任何平台上运行的任何其他 SQL 服务器。

除了备份和迁移之外,使用 SQL 后端(至少对我来说)的最佳原因是存储元数据,但这仍然需要一些自定义 SQL,因为他们可能不知道我要存储什么以及如何存储。

我知道这不是一个解决方案,所以 -1 如果你愿意的话。除了工单中提到的官方服务器端集成指南之外,我没有找到任何说明。

If you are looking for an official one, there isn't a one and it looks like there will not be one. I created a trac ticket for this and it got rejected.

They are kind of right in that it's complicated to write a generic connector, because the backend could be MySQL, MSSQL, PostgreSQL, Oracle or any other SQL server running on any platform.

Backups and migrations aside, the best reason to use an SQL backend (at least for me) is for storing metadata and that would still require some custom SQL, because they could have no idea what I want to store and how.

I know this is not a solution so -1 if you feel like it. I have not found any instructions other than the official Server Side Integration guide mentioned in the ticket.

活泼老夫 2024-12-04 20:55:57

你需要的是一个处理程序。您正在尝试从数据库读取二进制图像并将其提供给用户(或页面 - 根据需要)。
您可以在此处查看示例:
http://weblogs.asp.net/cazzu/archive/2003 /08/27/25568.aspx

这将有助于了解谁或什么将使用该图像。您正在创建一家形象店吗?因此,此时您将在 web.config 中引用处理程序,然后创建引用图像的 Gridview 或 DataList,处理程序将在运行时为您呈现它们。

What you need is a handler. You are trying to read a binary image from a database and serve it to a user (or page - depending on the need).
You can see an example here:
http://weblogs.asp.net/cazzu/archive/2003/08/27/25568.aspx

It would help to know who -or what- is going to consume the image. Are you creating an image store? So at that point you would reference the Handler in your web.config and then create a Gridview or DataList that references the images and the Handler will render them for you at runtime.

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