Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以二进制格式将图像存储在数据库中的最佳方法是什么,以及如何使用 C# 实现它?
如果您使用的是 SQL Server,则可以使用 Image 列类型。
您可以在此处找到将图像转换为二进制的答案:
将图像转换为二进制?
您需要 SQL 数据库中的 BLOB 列才能插入它。
编辑:
如果要从数据库中取回它,可以使用以下文章来执行此操作:
http://support.microsoft.com/kb/326502