SQlite で BLOB が必要な理由がわかりません。いくつかのドキュメントでこの説明を見ました
BLOB。値はデータの塊であり、入力されたとおりに保存されます。
しかし、私はそれが何であるかわかりませんでしたか?なぜそれが必要なのですか?いくつか提案をお願いします。
よろしくアナンド
BLOB is an acronym that means
B inary L arge OB ject
So, it's a container for stuff that you want stored "as such" without the need to serialize them to eg a clean string, and that are typically larger than the usual types that are stored in a database. Examples are serialized objects (a serialized object is represented by a stream of bytes), bitmaps, sound clips, etc.
その時にImageViewのようなデータベースに通常のオブジェクトを保存する必要がある場合、そのためにblobタイプを使用します