Erel,
Still, I do not succeed to read a BLOB. The coding I use is as indicated by you:
Dim blob(0) as Byte
Sub Button4_Click
Cmd.CommandText = "SELECT * FROM WPOILABEL_V1"
Reader.Value = Cmd.ExecuteReader
Do While Reader.ReadNextRow = TRUE
blob() = Reader.GetBytes(4)
Label1.Text=blob()
'Do what you need with the bytes array.
Loop
Reader.Close
End Sub
On the line blob() = etc. I get the message:Input string was not in a correct format.
According to SQLite Expert column 4 ( and 5) are blobs and do contain information.
The data base concerned is UTF-16le encoded. I have attached the data base.
Any idea what is going wrong?
Harry