Base64 编码图像的数据类型是什么?
问题:为了将徽标存储在数据库中并在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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