如何从 clojureql 查询 postgres Point 类型?

发布于 2024-11-19 05:43:08 字数 80 浏览 5 评论 0原文

如何从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人间不值得 2024-11-26 05:43:08

我不是 clojureql 专家,但如果这个语法正确:(

(with-connection db 
   (with-query-results rs ["select * from blogs"] 
     ; rs will be a sequence of maps, 
     ; one for each record in the result set. 
     (dorun (map #(println (:title %)) rs))))

取自 此处

为什么不尝试将 rs 更改为:

select point[0] as x, point[1] as y from table

这可行吗?我不确定它会不会,但如果这种 Clojure 查询方式只是将查询转发到数据库“asis”,您可以尝试在其中使用 PostGIS 运算符。

I am not an expert in clojureql, but if this syntax is correct:

(with-connection db 
   (with-query-results rs ["select * from blogs"] 
     ; rs will be a sequence of maps, 
     ; one for each record in the result set. 
     (dorun (map #(println (:title %)) rs))))

(taken from here)

why not trying to change the rs into:

select point[0] as x, point[1] as y from table

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文