最佳答案
是的,您可以将图像文件(和任何其他文件)作为二进制数据存储在数据库中.
原文链接:https://www.f2er.com/mysql/433512.html在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.