I have a .Net system that I am writing which needs to be able to retrieve an oracle geometry field from the database. Is there any way in my SQL statement to cast the geometry type to a string so that I can deal with it on my .Net side. At the moment I cannot get the data out as it is not a valid datatype to put into my OLEDB reader so it must be converted database side.
select CS_BOUNDS from MDSYS.CS_SRS where SRID = 4326
Thanks
You could use the
Get_WKT
method:The documentation gives the following example:
The return type is CLOB.