博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JPA自定义sql返回 No Dialect mapping for JDBC type: 111
阅读量:6211 次
发布时间:2019-06-21

本文共 953 字,大约阅读时间需要 3 分钟。

hot3.png

@PersistenceContext private EntityManager entityManager; public 
 HashMap
 queryPersonAttStatus(   Attendance attendance, String startDate, String endDate) {  Query query = entityManager    .createNativeQuery("select status, count(1), cast(sum( case when exctime = ''  then 0  when exctime =null then 0  else exctime end) as varchar(10)) from T_UBMP_SM_ATTENDANCE where workdate between '"      + startDate      + "' and '"      + endDate      + "' and  upprojectid = '"      + attendance.getUpprojectid()      + "' group by status");  List result = query.getResultList();  HashMap
 ret = new HashMap
();  if(result != null && result.size() > 0){   for(int index = 0; index < result.size(); index ++){    Object[] status = (Object[])(result.get(index));。。。。。。

如果不加  cast(column  as varchar(size))  报错No Dialect mapping for JDBC type: 111

转载于:https://my.oschina.net/u/2540218/blog/599011

你可能感兴趣的文章
ASP.NET中url传递中文的解决方案
查看>>
PHP中Trait详解及其应用
查看>>
windows 安装nodejs 和 npm
查看>>
HDU 2553 N皇后问题
查看>>
ubuntu apache2 虚拟主机服务
查看>>
组合数据类型练习,英文词频统计实例上
查看>>
ffmpeg获取视频封面图片
查看>>
sql 循环执行游标
查看>>
app-in purchase中测试出错:itunes连接出错的解决办法
查看>>
冒泡排序
查看>>
从iPod音乐库中存取音乐的源代码
查看>>
数学分析原理 定理 6.10
查看>>
豪杰的终章
查看>>
_itoa _itow _itot atoi atof atol
查看>>
内核下枚举进程(一)进程活动链
查看>>
【高德地图API】从零开始学高德JS API(四)搜索服务——POI搜索|自动完成|输入提示|行政区域|交叉路口|自有数据检索...
查看>>
mybatis,sql 批量更新
查看>>
RabbitMQ学习(一):RabbitMQ要点简介
查看>>
CVonline: The Evolving, Distributed, Non-Proprietary, On-Line Compendium of Computer Vision
查看>>
treap
查看>>