I store "BYTE[]" type data into a BLOB. It stores it perfectly, the data being represented by hexadecimal pairs when I try to view it in MySQL. Now I want to convert that hexadecimal pairs into string. All the data is "simple" data such as strsing, intesger, floats, e the only thing that it is represented in hex. There is no complex data structures inside the BLOB.
What is the best way to do this?
Thank you