-1

SQlite で BLOB が必要な理由がわかりません。いくつかのドキュメントでこの説明を見ました

BLOB。値はデータの塊であり、入力されたとおりに保存されます。

しかし、私はそれが何であるかわかりませんでしたか?なぜそれが必要なのですか?いくつか提案をお願いします。

よろしくアナンド

4

2 に答える 2

2

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.

于 2013-09-13T13:13:31.470 に答える
-1

その時にImageViewのようなデータベースに通常のオブジェクトを保存する必要がある場合、そのためにblobタイプを使用します

于 2013-09-13T13:09:41.533 に答える