postgresql – 如何从clojureql查询postgres点类型?

前端之家收集整理的这篇文章主要介绍了postgresql – 如何从clojureql查询postgres点类型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何从clojureql查询postgres Point类型?我希望使用PostGIS功能,但clojureql似乎并不包括这一点。
我不是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))))

(取自here)

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

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

这将工作吗?我不确定它会,但如果这种Clojure的查询方式只是将查询转发到DB“asis”,您可以尝试使用PostGIS操作符。

原文链接:https://www.f2er.com/postgresql/193247.html

猜你在找的Postgre SQL相关文章