作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
感谢发帖。我想寻求您的建议,因为我尝试使用JPA/Hibernate
调用Postgresql
中的函数,但我一直收到错误消息。能否请你帮忙?谢谢。
代码如下:
String sql = “from Motot u where FUNCTION(‘earth_box’, FUNCTION(‘ll_to_earth’, :lat, :lon), :range) > FUNCTION(‘ll_to_earth’, u.g_Latitude, u.g_Longitude)”;
List resMeter2 = entityManager.createQuery(sqlMeter2, Motor.class)
.setParameter(“lat”, lat)
.setParameter(“lon”, lon)
.setParameter(“range”, radius)
.getResultList();
错误信息如下:
org.hibernate.exception.SQLGrammarException: could not extract ResultSet
Caused by: org.postgresql.util.PSQLException: ERROR: function function(unknown, double precision, double precision) does not exist
Hint: No function matches the given name and argument types. You might need to add explicit type casts.
Position: 930
非常感谢
最佳答案
您需要安装扩展,尝试在您的 sql 工具客户端中执行:
CREATE EXTENSION earthdistance SCHEMA [你的方案名称];
关于java - postgresql jpa earth_distance 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39044322/
感谢发帖。我想寻求您的建议,因为我尝试使用JPA/Hibernate 调用Postgresql 中的函数,但我一直收到错误消息。能否请你帮忙?谢谢。 代码如下: String sql = “from
我有一个表格站点,其中存储了我的站点信息以及纬度和经度。 ozssc=> \d site; ...... site_latitude | double precision
我是一名优秀的程序员,十分优秀!