position-postgresql hibernate 使用函数 出错

问题描述

postgresql hibernate 使用函数 出错

查询语句:from User where position('@123@' in '@'||uname||'@')>0
错误提示:unexpected token '@' near 1,

hql 中不能使用postgresql数据库的position函数吗

解决方案

hql就是为了实现底层数据库的透明性,方便代码在不同的数据库之间切换,其当然不支持某一特定数据库的函数了。

时间: 2024-10-31 11:01:53

position-postgresql hibernate 使用函数 出错的相关文章

在服务器的mysql中创建自定义函数出错

问题描述 在服务器的mysql中创建自定义函数出错 我的一台机器,连接服务器上mysql,创建自定义函数报错[Err] 1418 - This function has none of DETERMINISTIC NO SQL or READS SQL DATA in its declaration and binary logging is enabled (you might want to use the less safe log_bin_trust_function_creators

sublime-python为何导入模块调用函数出错

问题描述 python为何导入模块调用函数出错 我在sublime和editplus里写python,如下几句: -*- coding: utf-8 -*- import shutil shutil.copyfile('hello.txt', 'hello2.txt') 提示错误: Traceback (most recent call last): File "F:Pythonexercise文件处理shutil.py", line 2, in import shutil File

terminate-QThread连接finished信号和deleteLater函数出错

问题描述 QThread连接finished信号和deleteLater函数出错 MyThread继承QThread,并实例化一个MyThread对象m.连接m的finished信号和deleteLater信号. connect(m,SIGNAL(finished()),m,SLOT(deleteLater)); 但是当我调用m->terminate();函数时,程序会崩溃. 如果采用队列连接的方式 connect(m,SIGNAL(finished()),m,SLOT(deleteLater)

new-//进行新增调查子项目的业务逻辑处理函数出错 求帮看一下

问题描述 //进行新增调查子项目的业务逻辑处理函数出错 求帮看一下 //新增surveyChild public ModelAndView insertSurveyChildOption(HttpServletRequest req, HttpServletResponse res) throws ServletRequestBindingException { //强制转换成surveyChild SurveyChild surveyChild = getSurveyChildCommand(

MYSQL 创建函数出错的解决方案

本文转自IT摆渡网欢迎转载,请标明出处 更多mysq文章请阅读 mysql问题错误修改 在使用MySQL数据库时,有时会遇到MySQL函数不能创建的情况.下面就教您一个解决MySQL函数不能创建问题的方法,供您借鉴参考. 案例一: 目前在项目中,执行创建mysql的函数出错, mysql 创建函数出错信息如下: Error Code: 1227. Access denied; you need (at least one of) the SUPER privilege(s) for this o

c语言-C语言函数出错?函数好难学啊

问题描述 C语言函数出错?函数好难学啊 #include main() { int aaaaa(int a) { int bbb; bbb=1+a; return bbb; }; aaaaa = 1; printf("%d",aaaaa); } 解决方案 #include<stdio.h> int aaaaa(int a) { int bbb; bbb=1+a; return bbb; } int main() { printf("%d",aaaaa(1

c语言-运行exe文件时fseek函数出错

问题描述 运行exe文件时fseek函数出错 我用fopen函数打开一个bmp文件,然后用fseek函数设置指针位置,程序在vs中调试完全没有问题,但运行exe文件时就出错.不知什么原因,求大神帮助! 解决方案 文件夹和文件名尽量不要用中文 解决方案二: stream 无效,是不是打开文件失败了,你没有判断文件打开是否成功!

mvc注解-spring MVC注解 + hibernate +jpa配置 出错 具体如下

问题描述 spring MVC注解 + hibernate +jpa配置 出错 具体如下 这个是错误 No unique bean of type [javax.persistence.EntityManagerFactory] is defined: expected single bean but found 0 下面为XML配置文件 web.xml 导入hibernate <filter> <filter-name>openEntityManagerInViewFilter&

mysql 数据库-HIbernate映射查询出错,

问题描述 HIbernate映射查询出错, UserIm表继承User表,使用的是@Inheritance(strategy = InheritanceType.JOINED)策略,其中User对象中有Accout对象,User和Accout对象之间是有关联表 ORG_ACCOUNT_USER_CLIENT的,但是这个关联表里还有其他字段有外键关联,字段名为 CLIENT_ID,不知道hibernate是怎么弄的,查询的时候把这个 CLIENT_ID 也查询了,我没设置让他查询 CLIENT_I