For performance sake I have a need to read the data in the .geodatabase sqlite file directly. I can make my connection to the database and obtain all the field information except for the shape field. I expected this to be stored as a json string representation for the geometry but it doesn't appear to be. I tried using the sqlite hex() command to get the hexidecimal representation of the blob but I can't seem to get that hexidecimal to convert into a json string to be able to use the Geometry.FromJSON method for getting my shape information. How can I convert this shape information into a Geometry object?