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.
我已经在一个表中存储了一个.swf文件的路径,比如Test,
我已将表格字段类型输入为 BLOB。现在的问题是,在检索时不会呈现为 swf 文件。
mysql中的BLOB数据类型不是用于存储.swf等文件类型吗?
我该如何解决我的问题?
提前致谢。
您只需要保存文件或文件的路径吗?如果您只需要保存文件路径,则可以使用 vachar 或文本字段。
BLOB 存储 BINARY 类型。但是您说您将 .swf 的路径存储在该字段中。您应该将 swf 的内容放入键入为 BLOB 的字段中。或者将字段类型更改为 varchar 并将路径存储在其中。