SQLite how to declare as Byte Array? -


I have a SQLite database I want to create a field and declare it as a byte array type, but I do not know what SQLite would be of some type of byte array, how would I do this?

Looking for you.

Webpage:

BLOB - is a stain of value data, which was actually input.

Here is an example of creating a table with two columns - an ID and some data, which is a blob:

  make table T1 ( ID Integer Primary Key, Data Blog);  

Comments