Base64 编码图像的数据类型是什么?

发布于 2024-09-12 08:07:56 字数 204 浏览 4 评论 0原文

问题:为了将徽标存储在数据库中并在 ms-reporting 服务中动态显示它们,我需要对图像进行 Base64 编码。由于 MS 的限制,它不适用于二进制保存的图像...

现在我的问题:我应该使用哪种数据类型? Varchar、nvarchar 还是文本?

我想 varchar 就足够了,因为 base64 编码,但图像可能大于 4000 个字符......

Question: In order to store logos in a database and display them dynamically in ms-reporting service, I need to base64 encode the image. It doesn't work with binary saved images, due to MS limitations...

Now my question: Which datatype do I use? Varchar, nvarchar or text?

I guess varchar would be good enough, since base64 encoded, but images might be larger than 4000 characters...

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

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

发布评论

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

评论(1

沉鱼一梦 2024-09-19 08:07:56

Varchar(max) 最大支持 2GB,并且由于数据已经经过 Base64 编码,因此不需要 unicode 存储。

http:// www.sqlskills.com/BLOGS/PAUL/post/Importance-of-choosing-the-right-LOB-storage-technique.aspx

Varchar(max) supports up to 2GB, and since the data is already base64 encoded, unicode storage won't be required.

http://www.sqlskills.com/BLOGS/PAUL/post/Importance-of-choosing-the-right-LOB-storage-technique.aspx

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