c# – 数据库中的图像

前端之家收集整理的这篇文章主要介绍了c# – 数据库中的图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

是否可以在MysqL数据库中存储图像文件(.jpg,.gif等)?或者只是在系统中存储并获取图像的参考路径?

我正在使用ASP.NET C#,所以如果你有示例代码,那么如果你可以分享它会很棒.

最佳答案
是的,您可以将图像文件(和任何其他文件)作为二进制数据存储在数据库中.

MySQL中,BLOB data type可用于实现此目的.

A BLOB is a binary large object that can hold a variable amount of data. The four BLOB types are TINYBLOB,BLOB,MEDIUMBLOB,and LONGBLOB. These differ only in the maximum length of the values they can hold. […]

BLOB values are treated as binary strings (byte strings). They have no character set,and sorting and comparison are based on the numeric values of the bytes in column values.

原文链接:https://www.f2er.com/mysql/433512.html

猜你在找的MySQL相关文章