ORACLE SDO_GEOMETRY ToString()?
我正在编写一个 .Net 系统,它需要能够从数据库中检索 Oracle 几何字段。我的 SQL 语句中是否有任何方法可以将几何类型转换为字符串,以便我可以在 .Net 端处理它。目前我无法取出数据,因为它不是放入 OLEDB 读取器的有效数据类型,因此必须在数据库端进行转换。
select CS_BOUNDS from MDSYS.CS_SRS where SRID = 4326
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
Get_WKT
< /a> 方法:文档给出了以下示例:
返回类型是 CLOB。
You could use the
Get_WKT
method:The documentation gives the following example:
The return type is CLOB.