Hello,
I store a XML with base64 encoded images into a SQL blob field and want to read it back into a string for parsing. But I get an error
Cannot cast type {Type=Byte,Rank=0,ReomoteObject=True}to:{Type=Byte,Rank=1,RemoteObject=True}
So what I am doing wrong with the conversation ?
And I am right that it is possibe to parse the base64 encoded image fields from the XML back with Xml2Map or Sax ?
I store a XML with base64 encoded images into a SQL blob field and want to read it back into a string for parsing. But I get an error
Cannot cast type {Type=Byte,Rank=0,ReomoteObject=True}to:{Type=Byte,Rank=1,RemoteObject=True}
B4X:
Dim bc As ByteConverter
Dim cBytes As Byte
cBytes = Cursor1.GetBlob("XML")
Dim cXML As String = bc.StringFromBytes(cBytes)
So what I am doing wrong with the conversation ?
And I am right that it is possibe to parse the base64 encoded image fields from the XML back with Xml2Map or Sax ?