博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mybatis deal with empty result list. 查询结果为empty。
阅读量:6281 次
发布时间:2019-06-22

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

hot3.png

List
 resultList = (List
)sqlSession.select("statementId");
   select * from user where id > 100

assume that the above SQL return no rows (i.e. there is no id greater than 100).

The variable resultList will then be an empty List, but I want it to be null instead. How can I do that?

结果:

      如果没有查询到结果,将会返回一个empty的r esultlist,然后resultlist 的size 是0 而不是null.

转载于:https://my.oschina.net/u/2308739/blog/634341

你可能感兴趣的文章
mysql 时间函数 时间戳转为日期
查看>>
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>
运维基础命令
查看>>
入门到进阶React
查看>>
SVN 命令笔记
查看>>
检验手机号码
查看>>
重叠(Overlapped)IO模型
查看>>
Git使用教程
查看>>
使用shell脚本自动监控后台进程,并能自动重启
查看>>
Flex&Bison手册
查看>>
solrCloud+tomcat+zookeeper集群配置
查看>>
/etc/fstab,/etc/mtab,和 /proc/mounts
查看>>
Apache kafka 简介
查看>>
socket通信Demo
查看>>
技术人员的焦虑
查看>>
js 判断整数
查看>>