如何从 clojureql 查询 postgres Point 类型?
如何从 clojureql 查询 postgres Point 类型?我希望使用 PostGIS 功能,但 clojureql 似乎不包含此功能。
How can I query the postgres Point type from clojureql? I wish to use the PostGIS functionality but clojureql does not seem to include this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不是 clojureql 专家,但如果这个语法正确:(
取自 此处)
为什么不尝试将 rs 更改为:
这可行吗?我不确定它会不会,但如果这种 Clojure 查询方式只是将查询转发到数据库“asis”,您可以尝试在其中使用 PostGIS 运算符。
I am not an expert in clojureql, but if this syntax is correct:
(taken from here)
why not trying to change the rs into:
Will this work? I am not sure it will, but if this Clojure way of querying is simply forwarding the query to the DB "asis" you might try using as well PostGIS operators in it.