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.
我不明白为什么我们在 SQlite 中需要 BLOB。我在一些文件中看到了这个解释
斑点。该值是一团数据,完全按照输入的方式存储。
但我没有得到它是什么?为什么有必要?请给我一些建议。
问候阿南德
BLOB 是一个首字母缩写词,意思是
二进制大对象_ _ _
因此,它是您想要“照原样”存储的内容的容器,而无需将它们序列化为例如干净的字符串,并且通常比存储在数据库中的常用类型大。示例是序列化对象(序列化对象由字节流表示)、位图、声音剪辑等。
当需要将普通对象存储在像 ImageView 这样的数据库中时,blob 类型用于该