MysteryFCM wrote:
Are you wanting the SQL string?
No, I want to know the method of compression.
For example, if the content of the description is TESTING.
the description field in the database is a BLOB binary which will look something like this:
2C 00 00 00 00 00 00 AE 1B 37 25 D2
I need to know what method is used to compress the string 'TESTING' into '2C 00 00 00 00 00 00 AE 1B 37 25 D2'
(Of course I just made up that string, otherwise I won't be asking this question.)
I know the first couple of bytes are probably length.
I also know all the data are stored in utf8 in other columns
so if a feed is not UTF8 encoded, I assume it'll have to convert to UTF8 then do the compression before inserting to the description field.
Thanks again.