I have a large amount of data I'm reading from a 3rd party database connection. There is one spatial field that is a Geometry data type on their SQL Server that I would like to come in as a SpatialObj. It's currently importing as a Blob and I either need to find a way to import it as a shape or convert that Blob to a SpatialObj type. The goal is to use that spatial field in a much longer workflow that can check whether that shape overlaps another shape field from a different input.
There was a question about this from 8 years ago here, but the information there wasn't quite enough (I'm focused on importing, not outputting) and potentially out of date.
The connection I'm using is an ODBC connection (SQL Server Driver), and I've tried several different types of connections including OLE DB. I've tried converting the Blob to a different format, but I'm not sure where to go from there.