HI,
Somebody have a working sample of sending a Sqlite field blob with DBRequestManager, I can send and receive all type but not blob :-(
My code look like that:
Thank in advance
Somebody have a working sample of sending a Sqlite field blob with DBRequestManager, I can send and receive all type but not blob :-(
My code look like that:
B4X:
dim BlobBuffer() as byte
Cursor1.Position = 1
ref_id= Cursor1.GetString("ref_id")
BlobBuffer = Cursor1.GetBlob("PDFdata")
Dim cmd As DBCommand
cmd.Initialize
cmd.Name = "save_blob"
cmd.Parameters = Array As Object(ref_id,BlobBuffer)
reqManager.ExecuteCommand(cmd,"save_blob")
Thank in advance