I put a picture of 2 Mb in a Blob field in a database SQlite.
I manage to correctly insert the record.
However when I try to remove it with the following code:
I have this error:
There is a limit on the size of the blob field?
I manage to correctly insert the record.
However when I try to remove it with the following code:
B4X:
Dim Buffer() As Byte 'declare an empty byte array
Buffer = cursor1.GetBlob(nome_campo)
I have this error:
java.lang.IllegalStateException: Couldn't read row 0, col 0 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data from it.
There is a limit on the size of the blob field?